@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@font-face {
  font-family: "Hostania";
  src: url("../assets/font/Hostania.ttf") format("truetype");
}

@font-face {
  font-family: "RockwellRegular";
  src: url("../assets/font/RockwellRegular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Grotesk Display";
  src: url("../assets/font/NeueHaasDisplayRoman.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neue Haas Grotesk Display";
  src: url("../assets/font/neuehaasgrotdisp-65medium-trial.otf") format("opentype"),
    url("../assets/font/NeueHaasDisplayMediu.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  box-sizing: border-box;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: transparent;
  font-weight: 300;
  color: #000;
}

html {
  background-color: #141414;
}

body::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0);
}

body::-webkit-scrollbar {
  width: 2px;
  background-color: rgba(0, 0, 0, 0);
}

body::-webkit-scrollbar-thumb {
  border-radius: 50px;
  background: #fef1de;
}

a,
p,
ul li {
  font-family: "Poppins", sans-serif;
  color: #000;
}

a {
  text-decoration: none;
}

::selection {
  color: #fef1de;
  background: #000;
}

section {
  padding: 3rem 0;
  overflow-y: visible;
  position: relative;
}

video,
img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

h6,
h5,
h2,
h1,
h3,
h4 {
  font-family: "Hostania";
}

.container-fluid {
  width: 90%;
}

/* ========== Hero video ========== */
/* Section is in normal flow so .hero-video-ui scrolls; only .hero-video-bg stays fixed behind it. */
.hero-video-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: transparent;
  display: flex;
  flex-direction: column;
  z-index: 2;
  padding: 0;
  overflow: visible;
}

/* Past hero strip: hide fixed video layer only (UI already scrolled away). */
body.ftv-page--past-hero .hero-video-bg {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero-video-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  z-index: 0;
  background: #060606;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.hero-video-ui {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  flex: 1;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
}

.hero-poster-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
  display: none;
  filter: grayscale(100%);
}

.hero-poster-fallback.is-visible {
  display: block;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
  filter: grayscale(100%);
  display: block;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-logo-bar {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .hero-logo-bar {
    padding: 3rem 1.5rem;
  }
}

@media (min-width: 768px) {
  .hero-logo-bar {
    padding: 1.25rem 5rem 3rem 5rem;
  }
}

.hero-logo-img {
  width: auto;
  height: auto;
  max-width: 5.5rem;
  max-height: 2.5rem;
  object-fit: contain;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .hero-logo-img {
    max-width: 7rem;
    max-height: 3rem;
  }
}

@media (min-width: 768px) {
  .hero-logo-img {
    max-width: 12rem;
    max-height: 4rem;
  }
}

.hero-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #ff0000;
  font-size: 0.7rem;
  /* font-weight: 600; */
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: "Neue Haas Grotesk Display";
}

@media (min-width: 640px) {
  .hero-contact-link {
    font-size: 0.875rem;
    gap: 0.5rem;
    letter-spacing: 0.15em;
  }
}

.hero-contact-link:hover {
  color: #ff0000;
  opacity: 0.85;
}

.hero-play-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.25s, transform 0.25s;
}

.hero-play-circle:hover {
  opacity: 0.9;
  transform: translate(-50%, -50%) scale(1.05);
}

.hero-play-circle__img {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: contain;
  display: block;
}

@media (min-width: 640px) {
  .hero-play-circle__img {
    width: 5.5rem;
    height: 5.5rem;
  }
}

@media (min-width: 768px) {
  .hero-play-circle__img {
    width: 7rem;
    height: 7rem;
  }
}

.hero-text {
  position: absolute;
  bottom: 0;
  z-index: 30;
  padding: 1rem;
  padding-bottom: 2rem;
}

@media (min-width: 640px) {
  .hero-text {
    padding: 1.5rem;
    padding-bottom: 2.5rem;
  }
}

@media (min-width: 768px) {
  .hero-text {
    padding: 2rem 5rem 3rem;
  }
}

.hero-text--left {
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
  max-width: min(52rem, 92vw);
  z-index: 30;
}

.hero-text--left .hero-text__line {
  font-family: "RockwellRegular";
  font-weight: 400;
  font-size: 28px;
  line-height: 0.853;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  text-align: left;
}

@media (min-width: 768px) {
  .hero-text--left .hero-text__line {
    font-size: 58px;
  }
}

.hero-text__subcopy {
  margin: 1.1rem 0 0;
  max-width: 32rem;
  color: #ffffff;
  font-family: "Neue Haas Grotesk Display", "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-align: left;
}

@media (min-width: 768px) {
  .hero-text__subcopy {
    font-size: 24px;
    max-width: 760px;
    line-height: 1.18;
    margin-top: 1.6rem;
  }
}

.hero-text__line--red {
  color: #ff0000;
}

.hero-text__line--white {
  color: #ffffff;
}

.hero-text--right {
  right: 1rem;
  bottom: 1.25rem;
  left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.7rem;
  text-decoration: none;
  text-align: left;
  transition: opacity 0.25s;
  border: 1px solid #ff0000;
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.44);
  padding: 0.85rem 1rem;
  min-height: 62px;
  width: fit-content;
  z-index: 30;
}

.hero-text--right:hover {
  opacity: 0.9;
}

.hero-text__arrow {
  width: 1.2rem;
  height: 1rem;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  align-self: center;
}

@media (min-width: 768px) {
  .hero-text__arrow {
    width: 60px;
    height: 25px;
  }
 

}

.hero-text--right .hero-text__cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.02em;
  line-height: 1.04;
  max-width: 23rem;
}

.hero-text--right .hero-text__line {
  font-family: "Neue Haas Grotesk Display";
  font-weight: 500;
  font-size: 17px;
  line-height: 1.03;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff0000;
}

@media (max-width: 767px) {
  .hero-text--right {
    right: 6rem;
    left: 14px;
    bottom: 1rem;
    padding: 0.7rem 0.85rem;
    min-height: 52px;
    max-width: calc(100% - 1rem);
  }

  .hero-text--right .hero-text__line {
    font-size: 12px;
    letter-spacing: 0.06em;
  }

  .hero-text__subcopy {
    margin-bottom: 4rem;
    font-size: 16spx;
    line-height: 1.35;
    max-width: 92%;
  }

  
}

@media (min-width: 768px) {
  .hero-text--right {
    right: 5rem;
    bottom: 2.2rem;
    min-height: 68px;
    padding: 0.9rem 1.15rem;
  }
 
}

.hero-contact-icon {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .hero-contact-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
}

@media (min-width: 768px) {
  .hero-contact-link {
    font-size: 1rem;
  }

  .hero-contact-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

/* ========== Power | Carousel | Advantage | Role ========== */
.ftv-unified-brand-section {
  padding: 0 80px !important;
  overflow-x: hidden;
  isolation: isolate;
  box-sizing: border-box;
  /* Transparent so ::after fade composites over content; gutters use html #141414 */
  background-color: transparent;
  position: relative;
  z-index: 30;
  margin-top: -140px;
}
.ftv-unified-brand-section.bottom-fade{
  background: linear-gradient(
    180deg,
    /* 0% to 55%: Solid Dark Area */
    #141414 0%,
    #141414 87%, 

   
    
    /* 66% to 70%: The "Ease-Out" (Smoothing into transparency) */
    rgba(20, 20, 20, 0.15) 87.5%,
    rgba(20, 20, 20, 0.05) 88.8%,
    rgba(20, 20, 20, 0) 90%,

    /* 70% to 100%: Fully Transparent */
    rgba(20, 20, 20, 0) 100%
);
}
/* Full section height: #141414 at top → transparent at bottom (paints behind .ftv-gradient-shell; gutters + lower area show fade). */
 .ftv-benefits-points-section.bottom-fade {
  background: linear-gradient(
    180deg,
    /* --- TOP TRANSITION (0% to 10%) --- */
    rgba(20, 20, 20, 0) 0%,
    rgba(20, 20, 20, 0.15) 2.5%,
    rgba(20, 20, 20, 0.5) 5%,
    rgba(20, 20, 20, 0.85) 7.5%,
    rgba(20, 20, 20, 1) 10%,

    /* --- SOLID MIDDLE (10% to 90%) --- */
    #141414 10%,
    #141414 90%,

    /* --- BOTTOM TRANSITION (90% to 100%) --- */
    rgba(20, 20, 20, 1) 90%,
    rgba(20, 20, 20, 0.85) 92.5%,
    rgba(20, 20, 20, 0.5) 95%,
    rgba(20, 20, 20, 0.15) 97.5%,
    rgba(20, 20, 20, 0) 100%
);
}

@media (max-width: 767px) {
  .ftv-unified-brand-section {
    margin-top: -48px;
  }
}

@media (max-width: 1024px) {
  .ftv-unified-brand-section {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

@media (max-width: 480px) {
  .ftv-unified-brand-section {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}

/* 
  FIGMA GRADIENT 
  W 1505 | H 1329
  0%   -> #979797
  12%  -> #9F8585
  100% -> #DA0000 
*/
.ftv-gradient-shell {
  max-width: 1505px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  background: linear-gradient(180deg, #979797 0%, #9F8585 12%, #DA0000 100%);
  border-radius: 8px 8px 0 0;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

/* --- Section 1: Power (transparent over gradient) --- */
.ftv-power-section__shell {
  padding: 68px 80px;
  overflow: visible;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .ftv-power-section__shell {
    padding: 48px 24px;
  }
}

@media (max-width: 480px) {
  .ftv-power-section__shell {
    padding: 36px 16px;
  }
}

.brand-power-section__head {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .brand-power-section__head {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 88px 32px;
  }

  .brand-power-section__title {
    grid-column: 1 / 3;
    grid-row: 1;
    align-self: start;
  }

  .brand-power-section__copy {
    grid-column: 3 / 5;
    grid-row: 1;
    align-self: start;
  }
}

/* --- Section 2: Carousel (black stats strip over gradient) --- */
.ftv-carousel-section__shell {
  background: #000000;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.brand-power-section__title {
  margin: 0;
  font-family: "RockwellRegular" !important;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(2.25rem, 7vw, 60px);
  line-height: 0.853;
  letter-spacing: -0.05em;
  text-align: left;
  text-transform: none;
  align-self: start;
}

@media (min-width: 768px) {
  .brand-power-section__title {
    font-size: clamp(3.25rem, 6vw, 92px);
  }
}

.brand-power-section__title-line {
  display: block;
}

.brand-power-section__title-line--white {
  color: #ffffff;
}

.brand-power-section__title-line--black {
  color: #000000;
}

.brand-power-section__copy {
  margin: 0;
  font-family: "Neue Haas Grotesk Display";
  font-size: clamp(1rem, 2.6vw, 24px);
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.03em;
  color: #000000;
  text-align: left;
  justify-self: start;
  align-self: start;
  max-width: 36em;
  padding-top: 22px;
}

.brand-power-section__stats-wrap {
  list-style: none;
  margin: 0;
  padding: 26px 80px;
  overflow: hidden;
  background: #141414;
}

@media (max-width: 1024px) {
  .brand-power-section__stats-wrap {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 480px) {
  .brand-power-section__stats-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.brand-power-section__stats {
  list-style: none;
  display: flex;
  align-items: flex-end;
  gap: 96px;
  width: max-content;
  margin: 0;
  padding: 0;
  animation: brand-stats-carousel 18s linear infinite;
}

.brand-stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  flex: 0 0 auto;
  min-width: 260px;
}

.brand-stat__num {
  flex-shrink: 0;
  font-family: "RockwellRegular";
  font-weight: 400;
  font-style: normal;
  font-size: 100px;
  line-height: 0.86;
  letter-spacing: 0.08em;
  color: #DA0000;
  text-align: left;
}


.brand-stat__num sup{
  letter-spacing: normal;
  left: -5px;
}
@media (max-width: 480px) {
  .brand-stat__num {
    font-size: 70px;
  }
  .brand-stat__num sup{
    font-size: 45px;
  }
  .brand-power-section__stats-wrap{
    padding-block: 35px;
  }
}
.brand-stat__label {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 2px;
  flex: 1;
  min-width: 0;
  font-family: "Poppins";
  font-size: 16px;
  font-weight: 500;
  line-height: 1.12;
  color: #ffffff;
}

.brand-stat__label-line {
  display: block;
}

@media (max-width: 600px) {
  .brand-stat {
    gap: 16px;
    min-width: 220px;
  }
}

@keyframes brand-stats-carousel {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* --- Section 3: FashionTV Advantage (solid #DA0000 above role art; matches Figma red) --- */
.ftv-advantage-section__shell {
  position: relative;
  padding: 88px 80px 0;
  min-height: 755px;
  overflow: visible;
  z-index: 10;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #979797 0%, #da0000 35%, #da0000 100%);
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}

.advantage-section__content {
  position: relative;
  z-index: 2;
  flex: 1;
}

.advantage-section__head {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px 48px;
  align-items: start;
}

.advantage-section__title {
  margin: 0;
  font-family: "RockwellRegular", Rockwell, "Rockwell Nova", Georgia, serif;
  font-weight: 400;
  text-align: left;
}

.advantage-section__title-line {
  display: block;
}

.advantage-section__title-line--black {

  font-family: RockwellRegular;
  font-weight: 400;
  font-size: 86px;
  line-height: 0.853;
  letter-spacing: -0.05em;

  text-align: left;

}

.advantage-section__title-line--white {
  color: #ffffff;
  font-family: RockwellRegular;
  font-size: 86px;
  font-weight: 400;
  line-height: 0.853;
  letter-spacing: -0.05em;
  margin-top: 0;
  padding-bottom: 30px;
}

@media (max-width: 1100px) {

  .advantage-section__title-line--black,
  .advantage-section__title-line--white {
    font-size: 64px;
  }
}

.advantage-section__lead {
  margin: 0;
  justify-self: start;
  align-self: start;
  text-align: left;
  max-width: 377px;
  color: #ffffff;
  font-family: "Neue Haas Grotesk Display", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: 0;
  opacity: 1;
}

.advantage-section__grid {
  position: relative;
  z-index: 3;
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
}

.advantage-section__card {
  min-width: 0;
}

.advantage-section__icon {
  width: 58px;
  height: auto;
  display: block;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.advantage-section__card-title {
  margin: 0;
  text-align: left;
  color: #ffffff;
  font-family: "Neue Haas Grotesk Display";
  font-size: 30px;
  font-weight: 500;
  line-height: 0.938;
  letter-spacing: 0.08em;
}

.advantage-section__card-copy {
  margin: 0.6rem 0 0;
  color: #000000;
  font-family: "Neue Haas Grotesk Display";
  font-size: 22px;
  font-weight: 400;
  line-height: 1.45;
  opacity: 1;
  width: 20rem;
}

.advantage-section__role-bridge {
  max-width: 1505px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  bottom: 13rem;
  z-index: 10;
}

.advantage-section__role-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: -150px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  position: relative;
  z-index: 4;
  pointer-events: none;
  width: 100%;
  max-width: 1360px;
}

.advantage-section__role-image {
  width: 100%;


}

@media (max-width: 900px) {
  .ftv-advantage-section__shell {
    padding: 48px 24px 0;
    min-height: 700px;
  }

  .advantage-section__head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .advantage-section__lead {
    justify-self: start;
    max-width: 100%;
    font-size: clamp(1.0625rem, 3.5vw, 1.5rem);
  }

  .advantage-section__title-line--black,
  .advantage-section__title-line--white {
    font-size: 44px;
    line-height: 0.853;
    letter-spacing: -0.05em;
  }

  .advantage-section__grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
    gap: 28px;
  }

  .advantage-section__icon {
    width: 48px;
  }

  .advantage-section__card-title {
    font-size: 26px;
    line-height: 0.938;
    letter-spacing: 0.08em;
  }

  .advantage-section__card-copy {
    width: 15rem;
    font-size: 0.8125rem;
  }

  .advantage-section__role-bridge {
    bottom: 3rem;
  }

  .advantage-section__role-visual {
    margin-top: -80px;
    padding: 0 12px;
    max-width: 100%;
  }

  .ftv-role-section__black {
    padding: 32px 24px 48px;
  }
}

@media (max-width: 480px) {

  .advantage-section__title-line--black,
  .advantage-section__title-line--white {
    font-size: 32px;
  }
}

/* --- Role / consultant (standalone section below unified brand) --- */
.ftv-role-section {
  padding: 0 80px !important;
  overflow-x: hidden;
  box-sizing: border-box;
  position: relative;
  z-index: 30;
  background-color: transparent;
}

@media (max-width: 1024px) {
  .ftv-role-section {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

@media (max-width: 480px) {
  .ftv-role-section {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

.ftv-role-section__black {
  max-width: 1505px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding: 61px 80px 48px;
  position: relative;
  z-index: 5;
}

.role-section__tagline {
  margin: 0 auto;
  padding: 0;
  text-align: center;
  font-family: "RockwellRegular";
  font-weight: 400;
  font-size: clamp(2.1rem, 7vw, 90px);
  line-height: 0.853;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  max-width: 60rem;
}

.role-tagline__line1 {
  display: block;
  white-space: nowrap;
}

.role-tagline__line2 {
  display: block;
  margin-top: 0.08em;
  text-align: center;
}

.role-tagline__red {
  color: #ff0000;
}

.role-tagline__white {
  color: #ffffff;
}

.role-section__micro {
  margin: 24px auto 0;
  max-width: 50rem;
  text-align: center;
  font-family: "Neue Haas Grotesk Display";
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.03em;
  color: #d9d9d9;
}

.role-connect-grid {
  margin: 63px auto 0;
  width: 100%;
  max-width: 760px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 167px;
}

@media (max-width: 1024px) {
  .ftv-role-section__black {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 768px) {
  .role-tagline__line1 {
    white-space: normal;
  }

  .role-connect-grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 420px;
  }
}

@media (max-width: 480px) {
  .ftv-role-section__black {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.role-connect-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.role-connect-item__icon {
  width: 100%;
  height: auto;
  max-width: 78px;
  display: block;
  /* padding: 6px; */
  box-sizing: content-box;
  object-fit: contain;
  /* margin: 0 auto 12px; */

}

.role-connect-item__label {
  margin: 0;
  font-family: "Poppins";
  font-size: 17px;
  line-height: 1.05;
  letter-spacing: 0;
  color: #ffffff;
  text-transform: uppercase;
}

/* ========== Top 5 Reasons (carousel + custom cursor) ========== */
.ftv-top5-section {
  position: relative;
  background: #141414;
  padding: 3rem 1.875rem 2.5rem;
  overflow-x: clip;
  overflow-y: visible;
  box-sizing: border-box;
  --ftv-top5-red: #da0000;
  --ftv-top5-media-width: 430px;
  --ftv-top5-gap: 0.5rem;
  z-index: 30;
}

.ftv-top5-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin: 0 auto;
}

.ftv-top5-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: min(96vw, 920px);
  margin: 0 auto 1rem;
  padding-bottom: 1.25rem;
}

.ftv-top5-heading-stack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.ftv-top5-header::after {

  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
  width: min(96vw, 900px);
  height: clamp(300px, 54vw, 540px);
  opacity: 0.92;
  pointer-events: none;
  z-index: 0;
}

.ftv-top5-title {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 100%;
  font-family: "RockwellRegular", Rockwell, Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 2.75rem;
  line-height: 0.86;
  letter-spacing: -0.045em;
  text-align: center;
  text-transform: uppercase;
  color: var(--ftv-top5-red);
  padding: 0;
}

.ftv-top5-title__main {
  display: block;
}

.ftv-top5-title__subtitle {
  display: block;
  margin-top: 0.45rem;
  font-family: "Neue Haas Grotesk Display", "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-transform: none;
  color: #ffffff;
}

.ftv-top5-title__subtitle strong {
  font-weight: 500;
}

.ftv-top5-subtitle {
  position: relative;
  z-index: 1;
  margin: 0.45rem auto 0;
  max-width: min(96vw, 56rem);
  font-family: "Neue Haas Grotesk Display", "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
  line-height: normal;
  letter-spacing: 0.03em;
  text-align: center;
}

.ftv-top5-subtitle__line {
  display: block;
}

.ftv-top5-subtitle strong {
  font-weight: 500;
}

.ftv-top5-carousel-shell {
  position: relative;
  z-index: 2;
}

.ftv-top5-carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.2rem;
  /* max-width: min(100%, calc((var(--ftv-top5-card-width) * 3) + (var(--ftv-top5-gap) * 2))); */
  margin: 0 auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.ftv-top5-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.ftv-top5-carousel-track {
  display: flex;
  align-items: flex-start;
  gap: var(--ftv-top5-gap);
  width: max-content;
  padding: 0.25rem 2rem 0.8rem;
}

.ftv-top5-card {
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .ftv-top5-section {
    --ftv-top5-media-width: max(170px, min(46vw, 230px));
  }

  .ftv-top5-card {
    flex: 0 0 auto;
    width: var(--ftv-top5-media-width);
  }
}

/* Custom cursor (Tailwind-style markup → plain CSS; desktop fine pointer only) */
.ftv-top5-custom-cursor {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10050;
  width: 6rem;
  height: 6rem;
  margin: 0;
  padding: 0;
  pointer-events: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  transform: translate(-50%, -50%);
}

@media (min-width: 768px) {
  .ftv-top5-custom-cursor {
    display: flex;
  }
}

.ftv-top5-custom-cursor.is-visible {
  opacity: 1;
}

.ftv-top5-custom-cursor__ring {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid var(--ftv-top5-red, #da0000);
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.ftv-top5-custom-cursor__arrow {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row;
  width: 2.5rem;
  min-height: 0.6rem;
  transition: transform 0.3s ease;
}

.ftv-top5-custom-cursor__arrow-line {
  flex: 1;
  height: 1px;
  min-width: 0;
  background-color: var(--ftv-top5-red, #da0000);
}

.ftv-top5-custom-cursor__arrow-head {
  position: relative;
  flex-shrink: 0;
  width: 0.4rem;
  height: 0.4rem;
  margin-right: -2px;
  border-left: 1px solid var(--ftv-top5-red, #da0000);
  border-top: 1px solid var(--ftv-top5-red, #da0000);
  transform: rotate(-45deg);
  box-sizing: border-box;
}

.ftv-top5-section.is-cursor-nav,
.ftv-top5-section.is-cursor-nav * {
  cursor: none;
}

@media (hover: none),
(pointer: coarse) {

  .ftv-top5-section.is-cursor-nav,
  .ftv-top5-section.is-cursor-nav * {
    cursor: auto;
  }

  .ftv-top5-custom-cursor {
    display: none !important;
  }
}

.ftv-top5-card__num {
  display: block;
  font-family: "Neue Haas Grotesk Display", "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.08em;
  text-align: left;
  color: #DA0000;
  margin-bottom: 0.35rem;
}

.ftv-top5-card__media {
  width: 550px;
  height: 339px;
  aspect-ratio: auto;
  background: #141414;
  /* border: 1px solid rgba(218, 0, 0, 0.18); */
  overflow: hidden;
  margin-bottom: 0.65rem;
}

.ftv-top5-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%) contrast(1.04);
  display: block;
}

@media (max-width: 900px) {
  .ftv-top5-card__media {
    width: 100%;
    height: auto;
    aspect-ratio: 393 / 243;
  }
}

@media (max-width: 767px) {
  .ftv-top5-carousel-viewport {
    overflow: visible;
    max-width: 100%;
    padding-bottom: 0;
  }

  .ftv-top5-carousel-track {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0.25rem 0 0;
  }

  .ftv-top5-card {
    flex: 0 0 auto;
    width: 100%;
  }
}

.ftv-top5-card__title {
  margin: 0;
  font-family: "Neue Haas Grotesk Display";
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #DA0000;
  line-height: 93.8%;
  padding-top: 31px;
}

.ftv-top5-card__desc {
  /* margin: 0.35rem 0 0; */
  font-family: "Neue Haas Grotesk Display";
  font-size: 18px;
  font-weight: 400;
  line-height: 115.9%;
  letter-spacing: 0.03em;
  text-align: left;
  color: rgba(255, 255, 255, 0.92);
  padding-top: 15px;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 480px) {
  .ftv-top5-title {
    font-size: 3.75rem;
  }

  .ftv-top5-subtitle {
    font-size: 1.25rem;
  }
}

@media (min-width: 768px) {
  .ftv-top5-title {
    font-size: 4.75rem;
  }

  .ftv-top5-subtitle {
    font-size: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .ftv-top5-section {
    --ftv-top5-gap: 0.75rem;
  }

  .ftv-top5-section {
    padding: 4rem 1.5rem 3rem;
  }

  .ftv-top5-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.85rem;
  }

  .ftv-top5-header::after {
    top: 58%;
    width: min(96vw, 920px);
    height: clamp(340px, 46vw, 560px);

  }

  .ftv-top5-title {
    font-size: 100px;
    line-height: 0.86;
    letter-spacing: -0.05em;
    padding-bottom: 296px;
  }

  .ftv-top5-title__subtitle {
    margin-top: 0.5rem;
    font-size: 28px;
  }

  .ftv-top5-heading-stack {
    transform: translateY(-3.25rem);
  }

  .ftv-top5-carousel-shell {
    transform: translateY(-12rem);
  }
}

/* ========== Multiple revenue opportunities (Figma-style) ========== */
.ftv-revenue-section {
  background-color: #141414;
  z-index: 30;
  position: relative;
  z-index: 20;
  padding: 2.75rem 1.875rem 2.75rem;
  overflow: hidden;
}

.ftv-revenue-inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.ftv-revenue-head {
  text-align: center;
  margin-bottom: 1.5rem;
}

.ftv-revenue-title {
  margin: 0;
  font-family: "RockwellRegular", Rockwell, Georgia, "Times New Roman", serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.92;
  font-size: clamp(2.25rem, 7vw, 86px);
}

.ftv-revenue-title__red {
  display: block;
  color: #da0000;
}

.ftv-revenue-title__white {
  display: block;
  color: rgba(255, 255, 255, 0.96);
}

.ftv-revenue-kicker {
  margin: 0.85rem 0 0;
  font-family: "Neue Haas Grotesk Display", "Poppins", sans-serif;
  font-size: clamp(2rem, 2.7vw, 27px);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ff0000;
  padding-top: 7rem;
  padding-bottom: 2rem;
  line-height: 100%;
}

.ftv-revenue-stage {
  position: relative;
  margin: 1.5rem auto 0;
  width: 100%;
  max-width: 1180px;
  background: #0A0A0A;
  border: 0;
  box-shadow: none;
}

.ftv-revenue-stage::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  opacity: 0.35;
}

.ftv-revenue-media {
  margin: 0;
  position: relative;
  background: #0A0A0A;
  overflow: hidden;
}

.ftv-revenue-media__viewport {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.ftv-revenue-media__track {
  display: flex;
  width: 200%;
  height: 100%;
  transform: translateX(0);
  transition: transform 0.55s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: transform;
  backface-visibility: hidden;
}

.ftv-revenue-media__slide {
  flex: 0 0 50%;
  height: 100%;
  min-height: 0;
}

.ftv-revenue-media__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05) brightness(0.95);
  transform: translateZ(0);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .ftv-revenue-media__track {
    transition: none;
  }
}

.ftv-revenue-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.75);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.ftv-revenue-arrow span {
  font-size: 26px;
  line-height: 1;
  margin-top: -2px;
}

.ftv-revenue-arrow:hover {
  background: rgba(0, 0, 0, 0.55);
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.26);
}

.ftv-revenue-arrow:focus-visible {
  outline: 2px solid rgba(218, 0, 0, 0.55);
  outline-offset: 3px;
}

.ftv-revenue-arrow--left {
  left: 10px;
}

.ftv-revenue-arrow--right {
  right: 10px;
}

.ftv-revenue-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 260px at 15% 90%, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0) 60%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0) 55%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.45));
  pointer-events: none;
}

.ftv-revenue-media__label {
  position: absolute;
  right: 0.9rem;
  bottom: 0.7rem;
  margin: 0;
  font-family: "Neue Haas Grotesk Display", "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: none;
  color: #ff0000;
  z-index: 10;
}
@media  (max-width: 767px) {
  .ftv-revenue-media__label {
    bottom: 1.7rem;
  }
}

.ftv-revenue-pagination {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ftv-revenue-pagination__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.6);
  padding: 0;
  cursor: pointer;
}

.ftv-revenue-pagination__dot.is-active {
  background: #ff0000;
}

.ftv-revenue-panel {
  background-color: #0a0a0a;
}

.ftv-revenue-list {
  list-style: none;
  margin: 0;
  padding: 1rem 1.1rem;
  display: grid;
  gap: 0.35rem;
}

.ftv-revenue-btn {
  width: 100%;
  text-align: left;
  padding: 0.52rem 0.25rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: "Neue Haas Grotesk Display", "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.059;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.15s ease;
}

.ftv-revenue-btn.is-active {
  color: #ff0000;
}

.ftv-revenue-btn:hover {
  color: rgba(255, 255, 255, 0.72);
}

.ftv-revenue-btn.is-active:hover {
  color: #ff0000;
}

.ftv-revenue-btn:focus-visible {
  outline: 2px solid rgba(218, 0, 0, 0.5);
  outline-offset: 4px;
  border-radius: 2px;
}

@media (max-width: 767px) {
  .ftv-revenue-kicker {
    padding-top: 1.75rem;
    padding-bottom: 1.1rem;
  }

  .ftv-revenue-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.7rem;
        row-gap: 0.9rem;
    
  }
  .ftv-revenue-btn{
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  
  .ftv-revenue-stage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    height: 380px;
  }

  .ftv-revenue-media,
  .ftv-revenue-panel {
    height: 100%;
  }

  .ftv-revenue-media__viewport {
    height: 100%;
    min-height: 0;
  }

  .ftv-revenue-panel {
    border-top: 0;
    border-left: 0;
    display: flex;
    align-items: center;
  }

  .ftv-revenue-list {
    width: min(100%, 435px);
    min-height: 163px;
    padding: 0 0 0 45px;
    margin-left: 0;
    gap: 0.25rem;
  }

  .ftv-revenue-btn {
    font-size: 20px;
    padding: 0.35rem 0.1rem;
  }

  .ftv-revenue-media__img {
    height: 100%;
  }

  .ftv-revenue-arrow--left {
    left: 16px;
  }

  .ftv-revenue-arrow--right {
    right: 16px;
  }
}

.ftv-revenue-footer-kicker {
  margin: 1.15rem 0 0;
  text-align: center;
  font-family: "Neue Haas Grotesk Display", "Poppins", sans-serif;
  font-size: clamp(2rem, 2.7vw, 27px);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ff0000;
  padding-top: 5rem;
  padding-bottom: 2rem;
  line-height: 100%;
}

@media (min-width: 1024px) {
  .ftv-revenue-section {
    padding: 4.2rem 1.5rem 4.25rem;
  }

  .ftv-revenue-head {
    margin-bottom: 2rem;
  }

  .ftv-revenue-stage {
    max-width: 1203px;
    grid-template-columns: 1fr 1fr;
    height: 420px;
  }

  .ftv-revenue-media__label {
    right: 1.2rem;
    bottom: 0.95rem;
    font-size: 1rem;
  }

  .ftv-revenue-media__img {
    height: 100%;
  }
}

/* ========== Benefits points section ========== */
.ftv-benefits-points-section {
  /* background-color: #141414; */
  z-index: 30;
  position: relative;
  /* background: #000000; */
  padding: 2rem 1.875rem 2.5rem;
}

.ftv-benefits-points__inner {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding-top: 1rem;
}

.ftv-benefits-points__header-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .ftv-benefits-points__header-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    text-align: left;
    align-items: start;
    margin-bottom: 2.5rem;
  }
}

.ftv-benefits-points__header-label {
  margin: 0 0 0.35rem;
  font-family: "Neue Haas Grotesk Display", "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #da0000;
  line-height: 1.25;
}

.ftv-benefits-points__header-text {
  margin: 0;
  font-family: "Neue Haas Grotesk Display", "Poppins", sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .ftv-benefits-points__header-text {
    margin-left: 0;
    margin-right: 0;
    font-size: 0.875rem;
    max-width: none;
  }
}

.ftv-benefits-points__display-title {
  margin: 0 auto 1.75rem;
  max-width: min(96vw, 909px);
  text-align: center;
  font-family: "RockwellRegular", Rockwell, Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(2rem, 6.5vw, 70px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.ftv-benefits-points__display-title-line {
  display: block;
}

.ftv-benefits-points__display-title-block {
  display: block;
}

.ftv-benefits-points__display-serif {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  color: #ffffff;
}

.ftv-benefits-points__display-sans {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: uppercase;
  color: #da0000;
}

.ftv-benefits-points__wrap {
  text-align: center;
  cursor: pointer;
  padding-top: 2rem;
}

.ftv-benefits-point-item {
  position: relative;
  padding: 1rem 0;
  outline: none;
}

.ftv-benefits-point-item:focus-visible {
  outline: 2px solid rgba(218, 0, 0, 0.45);
  outline-offset: 4px;
}

.ftv-benefits-point-title {
  margin: 0;
  font-family: "Neue Haas Grotesk Display", "Poppins", sans-serif;
  font-size: clamp(1.375rem, 4.2vw, 36px);
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: none;
  color: #da0000;
  transition: color 0.18s ease;
}

.ftv-benefits-point-desc {
  margin: 0 auto;
  max-width: min(972px, 100%);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-family: "Neue Haas Grotesk Display", "Poppins", sans-serif;
  font-size: clamp(1rem, 2.2vw, 24px);
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.03em;
  text-align: center;
  color: rgba(255, 246, 231, 0.73);
  transition: opacity 0.18s ease;
}

.ftv-benefits-point-item:hover .ftv-benefits-point-desc,
.ftv-benefits-point-item:focus-within .ftv-benefits-point-desc {
  margin-top: 0.5rem;
  max-height: 12rem;
  opacity: 1;
}

@media (max-width: 767px) {
  .ftv-benefits-point-title {
    color: #da0000;
  }

  .ftv-benefits-point-desc {
    margin-top: 0.5rem;
    max-height: none;
    overflow: visible;
    opacity: 1;
  }
}

@media (min-width: 640px) {
  .ftv-benefits-points-section {
    padding: 2.25rem 1.5rem 2.75rem;
  }
}

@media (min-width: 768px) {
  .ftv-benefits-points-section {
    padding: 2.5rem 1.5rem 3rem;
  }

  .ftv-benefits-points__wrap:hover .ftv-benefits-point-item .ftv-benefits-point-title {
    color: rgba(218, 0, 0, 0.35);
  }

  .ftv-benefits-points__wrap:hover .ftv-benefits-point-item:hover .ftv-benefits-point-title {
    color: #da0000;
  }

  .ftv-benefits-points__wrap:hover .ftv-benefits-point-item:hover .ftv-benefits-point-desc {
    margin-top: 0.5rem;
    max-height: 12rem;
    opacity: 1;
  }

  .ftv-benefits-points__wrap:hover .ftv-benefits-point-item:not(:hover) .ftv-benefits-point-desc {
    margin-top: 0;
    max-height: 0;
    opacity: 0;
  }

  .ftv-benefits-point-item:focus-within .ftv-benefits-point-title {
    color: #da0000;
  }
}

/* ========== Footer ========== */
.footer-main {
  position: relative;
  z-index: 25;
  background-color: #0a0a0a;
  border-top: 1px solid rgba(163, 132, 95, 0.07);
  padding: 2.5rem 1.25rem 2rem;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .footer-main {
    padding-top: 3rem;
  }
}

@media (min-width: 768px) {
  .footer-main {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media (min-width: 1024px) {
  .footer-main {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.footer-map-wrap {
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-map-wrap {
    margin-bottom: 2.5rem;
  }
}

.footer-mobile-inner {
  display: flex;
  flex-direction: column;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  gap: 2rem;
}

@media (min-width: 640px) {
  .footer-mobile-inner {
    gap: 2.5rem;
  }
}

.footer-mobile-inner__top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.footer-mobile-logo {
  width: 120px;
  flex-shrink: 0;
}

.footer-mobile-inner .footer-desc {
  color: #c4c4c4;
  font-family: "Neue Haas Grotesk Display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: normal;
  text-align: left;
  margin: 0;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 0.75rem;
  align-items: center;
  justify-items: start;
}

.footer-contact-grid i,
.footer-contact-grid span,
.footer-contact-grid a {
  color: #c4c4c4;
  font-family: "Neue Haas Grotesk Display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: normal;
}

.footer-contact-grid a:hover {
  color: #c5a174;
  transition: color 0.2s;
}

.footer-mobile-inner .footer-social-links {
  margin: 0;
  gap: 0.75rem;
}

.footer-mobile-inner .footer-social-link {
  color: #a3845f;
  transition: color 0.2s;
}

.footer-mobile-inner .footer-social-link:hover {
  color: #c5a174;
}

.footer-divider {
  width: 100%;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(163, 132, 95, 0.09);
}

@media (min-width: 640px) {
  .footer-divider {
    margin-top: 1rem;
  }
}

.footer-mobile-inner .footer-copy {
  color: #414141;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding-top: 1.25rem;
  margin: 0;
}

@media (min-width: 640px) {
  .footer-mobile-inner .footer-copy {
    padding-top: 1rem;
  }
}

.footer-main-inner-desktop {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.footer-main-inner-desktop .footer-desktop-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem 3rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  .footer-main-inner-desktop .footer-desktop-row {
    gap: 3rem;
  }
}

.footer-desktop-col--brand {
  flex: 0 1 auto;
  max-width: 420px;
  min-width: 0;
}

.footer-desktop-col--brand .footer-desc {
  color: #c4c4c4;
  font-family: "Neue Haas Grotesk Display", "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: normal;
  text-align: left;
  margin: 0.5rem 0 0 0;
}

.footer-desktop-logo {
  width: 180px;
  height: auto;
}

.footer-desktop-col--contact,
.footer-desktop-col--social {
  flex: 0 0 auto;
  text-align: left;
  margin-top: auto;
}

.footer-heading-label {
  color: #8e725e;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-desktop-col--contact .footer-heading-label {
  font-weight: 700;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-list a,
.footer-contact-list span {
  color: #c4c4c4;
  font-family: "Neue Haas Grotesk Display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: normal;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-contact-list a:hover {
  color: #c5a174;
  transition: color 0.2s;
}

.footer-contact-list .footer-hours {
  color: #c4c4c4;
}

.footer-desktop-col--social .d-flex {
  gap: 0.75rem;
}

.footer-main-inner-desktop .footer-social-link {
  color: #a3845f;
  transition: color 0.2s;
}

.footer-main-inner-desktop .footer-social-link:hover {
  color: #c5a174;
}

.footer-main-inner-desktop .footer-copy--desktop {
  color: #5a5a5a;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding-top: 1.5rem;
  margin: 0;
}

@media (min-width: 768px) {
  .footer-main-inner-desktop {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ========== WhatsApp ========== */
.btn-whatsapp-pulse {
  background: #25d366;
  color: #fff;
  position: fixed;
  bottom: 35px;
  right: 10px;
  font-size: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 24px;
  z-index: 99;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

.btn-whatsapp-pulse svg {
  position: absolute;
}

.btn-whatsapp-pulse-border::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  padding: 25px;
  border: 5px solid #25d366;
  opacity: 0.75;
  animation-name: pulse-border;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

.btn-whatsapp-pulse-border {
  bottom: 120px;
  right: 20px;
  animation-play-state: paused;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

@keyframes pulse-border {
  0% {
    padding: 25px;
    opacity: 0.75;
  }

  75% {
    padding: 50px;
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* ========== Verification modal + jquery-confirm ========== */
.modal-content{
  max-width: 800px;
    margin: 0 auto;
}
.modal-body{
  padding:2rem;
}
#verificationModal .modal-header {
  display: flex;
  flex-direction: column;
}

#verificationModal .modal-content {
  padding: 40px 20px;
}

#verificationModal .btn-close {
  float: right;
  right: 5%;
  position: absolute;
  top: 5%;
}

#verificationModal .modal-body input {
  width: 60px;
  height: 80px;
  border-radius: 15px;
  text-align: center;
  font-size: 24px;
  margin: 0 5px;
  outline: none;
  border: 0.854px solid #000;
}

#verificationModal .modal-header,
#verificationModal .modal-footer {
  border-bottom: 0;
  border-top: 0;
}

#verificationModal .modal-footer {
  text-align: center;
  margin-top: 10px;
  justify-content: center;
}

#verificationModal .modal-header h5 {
  color: #000000;
  padding: 10px 0;
  text-align: center;
  font-size: 23px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

#verificationModal .modal-header p {
  color: #000;
  text-align: center;
  font-size: 18.889px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

#verificationModal .modal-body {
  display: flex;
  justify-content: center;
}

#verificationModal .modal-footer button:hover {
  border: 1px solid #000;
  background-color: #fff;
  color: #000;
}

#verificationModal .modal-footer button {
  border-radius: 10px;
  background: #000;
  color: #ffffff;
  border: 1px solid transparent;
  text-align: center;
  font-size: 18px;
  padding: 15px 0;
  width: 80%;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

#verificationModal .modal-header a svg {
  margin-right: 0px;
  height: 30px;
}

.jconfirm .jconfirm-box div.jconfirm-content-pane .jconfirm-content {
  color: #000;
}

@media screen and (max-width: 425px) {
  #recaptcha-container {
    transform-origin: 0px;
    transform: scale(0.65);
  }
}

@media screen and (max-width: 375px) {
  .container-fluid {
    width: 100%;
  }
}

/* ========== How you earn ========== */
.ftv-how-earn-section {
  background-color: #141414;
  z-index: 30;
  position: relative;
  padding: 4.5rem 1.875rem 3.5rem;
  overflow: hidden;
}

.ftv-how-earn__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.ftv-how-earn__head {
  text-align: center;
}

.ftv-how-earn__title {
  margin: 0;
  font-family: "RockwellRegular", Rockwell, Georgia, "Times New Roman", serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  font-size: 70px;
}

.ftv-how-earn__title--red {
  color: #ff0000;
}

.ftv-how-earn__title--white {
  color: #ffffff;
}

.ftv-how-earn__lead {
  margin: 1.15rem auto 0;
  max-width: 812px;
  width: 100%;
  text-align: center;
  font-family: "Neue Haas Grotesk Display";
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.03em;
  color: #ffffff;
  padding-top: 3rem;
}

.ftv-how-earn__extra {
  margin-top: 3.25rem;
  text-align: center;
}

.ftv-how-earn__extra-title {
  margin: 0 0 2.25rem;
  font-family: "Neue Haas Grotesk Display", "Poppins", sans-serif;
  font-size: 27px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
  color: #ff0000;
  padding-top: 35px;
}

.ftv-how-earn-extra-heading_subtitle {
  margin: 1.15rem auto 0;
  max-width: 812px;
  width: 100%;
  font-family: "Neue Haas Grotesk Display", "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.03em;
  color: #ffffff;
  padding-top: 1.5rem;
}
.ftv-how-earn__extra-grid {
  list-style: none;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2rem;
  align-items: start;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
}

.ftv-how-earn__extra-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

.ftv-how-earn__extra-icon {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.ftv-how-earn__extra-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15em;
  font-family: "Neue Haas Grotesk Display", "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 93.8%;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff0000;
}

.ftv-how-earn__extra-label-line {
  display: block;
}

@media screen and (max-width: 768px) {
  .ftv-how-earn-section {
    padding-top: 3rem;
    padding-bottom: 2.75rem;
  }

  .ftv-how-earn__title {
    font-size: 2.6rem;
  }

  .ftv-how-earn__lead {
    font-size: 20px;
    letter-spacing: 0.03em;
  }

  .ftv-how-earn__extra {
    margin-top: 2.5rem;
  }

  .ftv-how-earn__extra-title {
    font-size: 22px;
    line-height: normal;
    letter-spacing: 0.03em;
    margin-bottom: 1.75rem;
  }

  .ftv-how-earn__extra-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 20rem;
  }

  .ftv-how-earn__extra-icon {
    width: 62px;
  }

  .ftv-how-earn__extra-label {
    font-size: 18px;
  }
}

@media screen and (max-width: 420px) {
  .ftv-how-earn-section {
    padding-top: 2.5rem;
    padding-bottom: 2.25rem;
  }

  .ftv-how-earn__title {
    font-size: 2rem;
  }

  .ftv-how-earn__lead {
    font-size: 18px;
    letter-spacing: 0.03em;
  }

  .ftv-how-earn__extra-title {
    font-size: 20px;
    line-height: normal;
    letter-spacing: 0.03em;
  }

  .ftv-how-earn__extra-icon {
    width: 56px;
  }

  .ftv-how-earn__extra-label {
    font-size: 16px;
  }
  .ftv-how-earn-extra-heading_subtitle{
    font-size: 18px;
  }
}

/* ========== Brand support (dark grid) ========== */
.ftv-brand-support-section {
  background-color: #141414;
  z-index: 30;
  position: relative;
  padding: 4.5rem 1.875rem;
  overflow: hidden;
}

.ftv-brand-support__inner {
  width: 100%;
  max-width: 1526px;
  margin: 0 auto;
}

.ftv-brand-support__head {
  text-align: center;
  margin-bottom: 3.25rem;
}

.ftv-brand-support__title {
  margin: 0;
  font-family: "RockwellRegular" !important;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  font-size: 70px;
  padding-top: 70px;
}

.ftv-brand-support__title--red {
  color: #ff0000;
}

.ftv-brand-support__title--white {
  color: #ffffff;
}

.ftv-brand-support__subtitle {
  margin: 1.15rem auto 0;
  max-width: 812px;
  width: 100%;
  font-family: "Neue Haas Grotesk Display", "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.03em;
  color: #ffffff;
  padding-top: 3rem;
}

.ftv-brand-support__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 220px));
  row-gap: 2.5rem;
  column-gap: 5rem;
  justify-content: center;
  align-items: end;
  text-align: center;
}

.ftv-brand-support__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.ftv-brand-support__icon {
  display: block;
  width: 72px;
  height: auto;
  object-fit: contain;
}

.ftv-brand-support__label {
  display: block;
  max-width: 205px;
  font-family: "Neue Haas Grotesk Display", "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  line-height: 93.8%;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .ftv-brand-support-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .ftv-brand-support__head {
    margin-bottom: 2.25rem;
  }

  .ftv-brand-support__title {
    font-size: 2.6rem;
  }

  .ftv-brand-support__subtitle {
    font-size: 20px;
    letter-spacing: 0.03em;
  }

  .ftv-brand-support__grid {
    grid-template-columns: repeat(2, minmax(160px, 205px));
    row-gap: 2rem;
    column-gap: 0.85rem;
    justify-content: center;
  }

  .ftv-brand-support__icon {
    width: 62px;
  }

  .ftv-brand-support__label {
    font-size: 18px;
    line-height: 93.8%;
    letter-spacing: 0.08em;
  }
}

@media screen and (max-width: 420px) {
  .ftv-brand-support-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .ftv-brand-support__title {
    font-size: 2rem;
  }

  .ftv-brand-support__subtitle {
    font-size: 18px;
    letter-spacing: 0.03em;
  }

  .ftv-brand-support__grid {
    grid-template-columns: 1fr;
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
    gap: 1.5rem;
  }

  .ftv-brand-support__icon {
    width: 56px;
  }

  .ftv-brand-support__label {
    font-size: 16px;
    line-height: 93.8%;
    letter-spacing: 0.08em;
    max-width: 100%;
  }
}

/* ========== Apply banner (independent width) ========== */
.ftv-apply-banner-section {
  padding: 2.5rem 1.875rem 4rem;
  background-color: #141414;
  z-index: 30;
  position: relative;
}

.ftv-apply-banner__inner {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
}

.ftv-apply-banner {
  width: 100%;
}

.ftv-apply-banner__image-wrap {
  position: relative;
  background: #0f0f11;
}

.ftv-apply-banner__video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.ftv-apply-banner__video--mobile {
  display: block;
}

.ftv-apply-banner__video--desktop {
  display: none;
}

@media (min-width: 768px) {
  .ftv-apply-banner__video--mobile {
    display: none;
  }

  .ftv-apply-banner__video--desktop {
    display: block;
  }
}

.ftv-apply-banner__overlay-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
}

.ftv-apply-banner__kicker {
  margin: 0;
  font-family: "RockwellRegular", Rockwell, Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.04;
}

.ftv-apply-banner__title {
  margin: 0.1rem 0 1.5rem;
  font-family: "RockwellRegular", Rockwell, Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.04;
  letter-spacing: 0.01em;
  color: #ffffff;
  padding-bottom: 2rem;
}

.ftv-apply-banner__title span {
  color: #ff0000;
}

.ftv-apply-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 165px;
  min-height: 52px;
  padding: 0.72rem 1.9rem;
  border: 1px solid #ff0000;
  background: #ff0000;
  color: #ffffff;
  text-decoration: none;
  font-family: "Neue Haas Grotesk Display", "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.ftv-apply-banner__button:hover,
.ftv-apply-banner__button:focus-visible {
  background: transparent;
  color: #ff0000;
}

@media screen and (max-width: 768px) {
  .ftv-apply-banner-section {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }

  .ftv-apply-banner {
    margin-top: 0;
  }

  .ftv-apply-banner__kicker {
    font-size: 22px;
  }

  .ftv-apply-banner__title {
    font-size: 26px;
    margin-bottom: 1rem;
  }

  .ftv-apply-banner__button {
    min-width: 145px;
    min-height: 46px;
    font-size: 14px;
  }
}

@media screen and (max-width: 420px) {
  .ftv-apply-banner__overlay-content {
    padding: 1rem;
  }

  .ftv-apply-banner__kicker {
    font-size: 15px;
  }

  .ftv-apply-banner__title {
    font-size: 18px;
    margin-bottom: 0.85rem;
  }

  .ftv-apply-banner__button {
    min-width: 128px;
    min-height: 40px;
    font-size: 12px;
  }
}

/* ========== Partnership kits ========== */
.ftv-partnership-kits-section {
  padding: 1.5rem 1.75rem 4.5rem;
  background-color: #141414;
  z-index: 30;
  position: relative;
}

.ftv-partnership-kits__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ftv-partnership-kits__head {
  text-align: center;
  margin-bottom: 2.3rem;
}

.ftv-partnership-kits__title {
  margin: 0;
  font-family: "RockwellRegular";
  font-size: 64px;
  line-height: 0.899;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding-top: 8rem;
}

@media screen and (max-width: 768px) {
  .ftv-partnership-kits__title {
    font-size: 28px;
    line-height: 0.95;
  }
}

.ftv-partnership-kits__title-red {
  color: #ff0000;
}

.ftv-partnership-kits__title-white {
  color: #ffffff;
}

.ftv-partnership-kits__subtitle {
  margin: 0.9rem auto 0;
  max-width: 800px;
  color: #ffffff;
  font-family: "Neue Haas Grotesk Display", "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.03em;
  text-align: center;
  padding-top: 32px;
  padding-bottom: 32px;
}

@media screen and (max-width: 768px) {
  .ftv-partnership-kits__subtitle {
    font-size: 18px;
    letter-spacing: 0.02em;
  }
}

.ftv-partnership-kits__list {
  width: 100%;
  max-width: 100%;
  border-top: 1px solid #000000;
}

.ftv-kit-row {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border-bottom: 1px solid #000000;
}

.ftv-kit-row--last {
  border-bottom: 1px solid #000000;
}

.ftv-kit-row__summary {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  list-style: none;
  cursor: pointer;
}

.ftv-kit-row__summary::-webkit-details-marker {
  display: none;
}

.ftv-kit-row__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 1.05rem 0.5rem;
}

.ftv-kit-row__title-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.ftv-kit-row__num {
  width: 2rem;
  flex-shrink: 0;
  font-family: "RockwellRegular";
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: #DA0000;
}

.ftv-kit-row__title {
  margin: 0;
  color: #ffffff;
  font-family: "Neue Haas Grotesk Display", "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 0.988;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
}

.ftv-kit-row__desc {
  margin: 0;
  max-width: 475px;
  color: #ffffff;
  font-family: "Neue Haas Grotesk Display";
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.03em;
  text-align: left;
}

.ftv-kit-row__download {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-family: "Neue Haas Grotesk Display", "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.03em;
  text-align: left;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.ftv-kit-row__download:hover {
  color: #ffffff;
  opacity: 0.74;
}

.ftv-kit-row__download .fa-download {
  color: #ff0000;
  font-size: 0.8em;
}

.ftv-kit-row__arrow {
  color: #ff0000;
  font-size: 1em;
  transition: transform 0.2s ease;
}

.ftv-kit-row--dropdown[open] .ftv-kit-row__arrow {
  transform: rotate(180deg);
}

.ftv-kit-row__sublist-wrap {
  border-top: 1px solid #000000;
  padding: 0.45rem 0.5rem 1rem 1rem;
}

.ftv-kit-row__subitem {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.5rem;
  color: inherit;
  text-decoration: none;
  font-family: "Neue Haas Grotesk Display", "Poppins", sans-serif;
  padding: 0.45rem 0;
  justify-content: space-between;
}

.ftv-kit-row__subitem:hover {
  opacity: 0.72;
}

.ftv-kit-row__subitem-label {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0;
  text-align: left;
}

.kits-dropdown-download {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-family: "Neue Haas Grotesk Display", "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.03em;
  text-align: left;
}

.ftv-kit-row__subitem-download {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.ftv-kit-row__subitem-download .fa-download {
  color: #ff0000 !important;
  -webkit-text-fill-color: #ff0000 !important;
  font-size: 0.8em;
}

@media (min-width: 864px) {
  .kits-row-inner {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr) max-content;
    gap: 2rem;
    align-items: center;
  }

  .ftv-kit-row__desc {
    min-width: 0;
  }

  .ftv-kit-row__download {
    white-space: nowrap;
  }

  .ftv-kit-row__inner {
    padding: 1.2rem 0.6rem;
  }

  .ftv-kit-row__sublist-wrap {
    padding: 0.5rem 0.6rem 1rem 0.6rem;
  }

  .ftv-kit-row__subitem {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr) max-content;
    gap: 2rem;
    align-items: center;
    flex-direction: unset;
  }

  .ftv-kit-row__subitem-label {
    grid-column: 2;
    min-width: 0;
  }

  .ftv-kit-row__subitem-download {
    grid-column: 3;
    white-space: nowrap;
  }
}

@media screen and (max-width: 768px) {
  .ftv-partnership-kits-section {
    padding-top: 0.5rem;
    padding-bottom: 3rem;
  }

  .ftv-partnership-kits__head {
    margin-bottom: 1.5rem;
  }

  .ftv-kit-row__sublist-wrap {
    padding-left: 1rem;
    padding-right: 0.5rem;
  }

  .ftv-kit-row__download,
  .kits-dropdown-download {
    font-size: 16px;
    letter-spacing: 0.02em;
  }

  .ftv-kit-row__subitem-label {
    font-size: 16px;
  }

  .ftv-kit-row__desc {
    font-size: 16px;
    letter-spacing: 0.02em;
    max-width: 100%;
  }

  .ftv-kit-row__title {
    font-size: 18px;
  }
}

@media screen and (max-width: 1366px) {
  .ftv-advantage-section__shell {
    height: 51rem;
  }

  .advantage-section__role-bridge {
    bottom: 133px;
  }

  /* .ftv-kit-row__download {
    font-size: 25px;
  } */

  .ftv-kit-row__title {
    font-size: 20px;
  }
}

@media (max-width: 767px) {

  .advantage-section__role-bridge {
    bottom: 44px;
  }

  .ftv-advantage-section__shell {
    height: 47rem;
  }
}

/* Apply consultant modal (Bootstrap) */
.apply-consultant-modal .modal-content {
  background: #1a1a1a;
  color: #f0f0f0;
  /* border: 1px solid rgba(218, 0, 0, 0.25); */
  border-radius: 10px;
}

.apply-consultant-modal .modal-dialog {
  max-width: 980px;
}

.apply-consultant-modal .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.apply-consultant-modal .modal-title {
  color: #fff;
  font-weight: 500;
  font-family: "RockwellRegular";
  text-transform: uppercase;
}

.apply-consultant-form__label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  display: inline-block;
}

.apply-consultant-form__label span {
  color: #da0000;
}

.apply-consultant-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.15rem;
}

.apply-consultant-form {
  width: 100%;
}

.apply-consultant-form__group--full {
  grid-column: 1 / -1;
}

.apply-consultant-form__summary {
  font-size: 0.875rem;
  line-height: 1.35;
  padding: 0.65rem 0.85rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.apply-consultant-form__summary--error {
  color: #ffb4b4;
  background: rgba(218, 0, 0, 0.18);
  border: 1px solid rgba(218, 0, 0, 0.45);
}

.apply-consultant-form__summary--success {
  color: #b8f5c6;
  background: rgba(34, 160, 80, 0.2);
  border: 1px solid rgba(80, 200, 120, 0.45);
}

.apply-consultant-form__error {
  display: none;
  font-size: 0.8rem;
  line-height: 1.3;
  color: #ff8a8a;
  margin-top: 0.4rem;
}

.apply-consultant-form__error:not(:empty) {
  display: block;
}

.apply-consultant-form__field--invalid {
  border-color: #ff6b6b !important;
}

.apply-consultant-form__field {
  background: #1a1a1a;
  border: 1px solid rgba(218, 0, 0, 0.55);
  color: #fff;
  border-radius: 4px;
  font-size: 0.875rem;
  padding: 0.65rem 1rem;
  width: 100%;
  outline: none;

}

.apply-consultant-form__field:focus {
  border-color: #da0000;
  /* box-shadow: 0 0 0 0.2rem rgba(218, 0, 0, 0.2); */
  /* background: #080808; */
  color: #fff;
}

.apply-consultant-form__field::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.apply-consultant-form__textarea {
  height: auto;
  min-height: 45px;
  resize: vertical;
}

.apply-consultant-form__select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='rgba(255,255,255,.95)' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.6' d='m3.5 6 4.5 4 4.5-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.95rem center;
  background-size: 0.95rem;
  padding-right: 2.2rem;
}

.apply-consultant-form__select option {
  color: #fff;
  background-color: #101010;
}

.apply-consultant-form__actions {
  margin-top: 1rem;
}

.apply-consultant-form__submit {
  width: 100%;
  background: #da0000;
  border: none;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.65rem 1rem;
  border-radius: 6px;
  cursor: pointer;
}

.apply-consultant-form__submit:hover,
.apply-consultant-form__submit:focus-visible {
  background: #b80000;
  color: #fff;
  outline: none;
}

@media (max-width: 767px) {
  .apply-consultant-form__grid {
    grid-template-columns: 1fr;
  }
}

.gradient-overlay {
  width: 100%;
  height: 550px;
  position: relative;
  top: -8rem;
  z-index: 3;
  pointer-events: none;
  background-image: linear-gradient(#14141400,
      #14141403 8.1%,
      #1414140c 15.5%,
      #1414141b 22.5%,
      #1414142d 29%,
      #14141442 35.3%,
      #14141473 47.1%,
      #141414a6 58%,
      #141414d0 67.9%,
      #141414ec 76.8%,
      #141414fa 84.8%,
      #141414fe 92.1%,
      #141414);
}

@media (max-width: 767px) {
  .gradient-overlay {
    height: 300px;
    top: -3rem;
  }
}

.sticky-wings {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  margin: 0 auto;
  z-index: 1;
  pointer-events: none;
  background-image: url("../assets/images/wings.png");
  background-repeat: no-repeat;
  background-position: center center;
  /* Smaller than `contain` (~full viewport); tune max or vw to taste */
  background-size: min(80vw, 600px) auto;
  background-attachment: fixed;
}

/* Semi-transparent shells so fixed .sticky-wings show through behind main content (above the hero video). Footer stays solid. */
/* .ftv-unified-brand-section, */
.ftv-role-section,
.ftv-top5-section,
/* .ftv-benefits-points-section, */
.ftv-revenue-section,
.ftv-how-earn-section,
.ftv-brand-support-section,
.ftv-apply-banner-section,
.ftv-partnership-kits-section {
  background-color: rgba(20, 20, 20, 0);
}

.footer-desktop-brand-links,
.footer-mobile-brand-links{
  display: flex;
  margin-top: 1rem;
  gap: 12px;
}

.footer-desktop-brand-links a,
.footer-mobile-brand-links a {
  color: #c4c4c4;
  font-family: "Neue Haas Grotesk Display", "Poppins", sans-serif;
}