:root{
  --red:#d11f22;
  --black:#000;
  --white:#fff;
  --container:1100px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  background:#fff;
  color:#111;
}

.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

/* ===== TOP STRIP ===== */
.top-strip{
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.top-strip__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 6px 0;
}
.top-strip__left,
.top-strip__right{
  margin:0;
  white-space:nowrap;
}

/* ===== HEADER ===== */
.site-header{
  background:#fff;
  border-bottom: 1px solid #d9d9d9;
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 14px 0;
}

/* Logo */
.brand{ display:inline-flex; align-items:center; text-decoration:none; }
.logo{ height: 56px; width:auto; }

/* ===== DESKTOP NAV PILL ===== */
.nav-pill{
  background: var(--red);
  border: 3px solid var(--black);
  border-radius: 26px;
  padding: 10px 14px 10px;
  min-width: 720px;
}

.nav-pill__row{
  display:flex;
  align-items:center;
  gap: 10px;
}

.nav-pill__row--bottom{ margin-top: 6px; }

.nav-pill__link{
  color: var(--white);
  text-decoration:none;
  font-weight: 900;
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-pill__sep{
  width: 2px;
  height: 16px;
  background: var(--black);
  opacity: .9;
}

.nav-pill__link.is-active{
  padding: 6px 10px;
  border-radius: 14px;
  background: rgba(0,0,0,.18);
}
.nav-pill__cta{
  padding: 6px 10px;
  border-radius: 14px;
  background: rgba(0,0,0,.22);
}

/* ===== HAMBURGER ===== */
.hamburger{
  display:none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid #d9d9d9;
  background:#fff;
  cursor:pointer;
}
.hamburger span{
  display:block;
  width: 20px;
  height: 2px;
  background:#111;
  margin: 5px auto;
  border-radius: 10px;
}

/* ===== MOBILE NAV ===== */
.mnav{
  display:none;
  overflow:hidden;
  border-top: 1px solid #e6e6e6;
  background:#fff;
}

.mnav__inner{
  padding: 12px 0 16px;
  display:grid;
  gap: 10px;
}

.mnav__link{
  text-decoration:none;
  font-weight: 900;
  color:#111;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f6f6f6;
}
.mnav__link:hover{ background:#ededed; }

.mnav__cta{
  background: var(--red);
  color: #fff;
}
.mnav__cta:hover{ background:#b7181b; }

/* animation */
@keyframes dropIn {
  from { transform: translateY(-12px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.mnav.is-open{
  display:block;
  animation: dropIn .18s ease-out both;
}

/* ===== RESPONSIVE HEADER ===== */
@media (max-width: 980px){
  .top-strip__inner{
    flex-direction:column;
    gap: 4px;
    text-align:center;
  }
  .top-strip__left, .top-strip__right{ white-space: normal; }

  .nav-pill{ display:none; }
  .hamburger{ display:inline-block; }
}

/* ================= HERO 2 ================= */

.hero2{
  position: relative;
  background: #050506;
  overflow: hidden;
  border-top: 2px solid #000;
}

.hero2__bg{
  position:absolute;
  inset:0;
  z-index:0;
}
.hero2__bg img{
  width:100%;
  height:100%;
  object-fit: cover;
}

.hero2::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    radial-gradient(900px 300px at 78% 40%, rgba(255,190,0,.18), transparent 60%),
    linear-gradient(to right, rgba(0,0,0,.82), rgba(0,0,0,.55));
}

.hero2__inner{
  position: relative;
  z-index:2;
  display:flex;
  align-items:center;
  min-height: 320px;
  padding: 26px 0;
  gap: 14px;
  justify-content: space-between;
  height: 350px;
}

/* LEFT */
.hero2__left{
  display:flex;
  justify-content:center;
  align-items:center;
  padding: 10px 10px;
}
.hero2__product{
  width: 320px;
  max-width: 100%;
  height: 200px;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.75));
}

/* CENTER */
.hero2__center{
  color:#fff;
  padding: 0 10px;
}
.hero2__title{
  margin:0 0 10px;
  font-weight: 1000;
  line-height: 1.05;
  font-size: clamp(28px, 3.3vw, 44px);
}
.hero2__accent{
  color: #d11f22;
  text-shadow: 0 2px 0 rgba(0,0,0,.55);
}
.hero2__subline{
  display:block;
  font-weight: 1000;
}

.hero2__list{
  margin: 10px 0 14px;
  padding:0;
  list-style:none;
  display:grid;
  gap: 10px;
  font-size: 15px;
  font-weight: 900;
}
.hero2__list li{
  position:relative;
  padding-left: 34px;
  text-shadow: 0 2px 0 rgba(0,0,0,.45);
}
.hero2__list li::before{
  content:"";
  position:absolute;
  left:0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: #f5b600;
  box-shadow: 0 10px 18px rgba(0,0,0,.45);
  clip-path: polygon(14% 52%, 0 64%, 36% 96%, 100% 20%, 86% 6%, 36% 72%);
}
.hero2__list li::after{
  content:"";
  position:absolute;
  left: 34px;
  bottom: -6px;
  width: min(360px, 90%);
  height: 2px;
  background: rgba(209,31,34,.9);
  opacity:.9;
}

.hero2__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 260px;
  height: 48px;
  background:#ffe600;
  color:#000;
  text-decoration:none;
  font-weight: 1000;
  border-radius: 10px;
  box-shadow: 0 18px 34px rgba(0,0,0,.60);
  border: 2px solid rgba(0,0,0,.35);
}
.hero2__btn:hover{ transform: translateY(-1px); }

/* RIGHT VIDEO (BIGGER) */
.hero2__right{
  display:flex;
  justify-content:center;
  align-items:center;
  padding: 10px 0;
}
.hero2__video{
  width: 100%;
  max-width: 520px;  /* bigger */
  height: 300px;     /* bigger */
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(0,0,0,.75);
  border: 1px solid rgba(255,255,255,.12);
}

/* MOBILE ORDER: TEXT → IMAGE → VIDEO */
@media (max-width: 980px){
  .hero2__inner{
    flex-direction: column;
    text-align: center;
    gap: 20px;
    height: auto;
    min-height: auto;
    padding: 22px 0 28px;
  }

  .hero2__center{ order: 1; }
  .hero2__left{ order: 2; }
  .hero2__right{ order: 3; }

  .hero2__product{
    max-width: 320px;
    height: auto;
  }

  .hero2__video{
    max-width: 100%;
    height: 260px;
  }

  .hero2__btn{ margin: 0 auto; }

  .hero2__list li::after{
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ================= VIG SECTION ================= */

.vig-section {
  background: #f2f2f2;
  padding: 60px 20px;
  text-align: center;
}

.vig-container {
  max-width: 1100px;
  margin: auto;
}

.vig-top-heading {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.vig-main-heading {
  font-size: 40px;
  font-weight: 800;
  color: #c41717;
  line-height: 1.2;
  margin-bottom: 50px;
}

.red {
  color: #c41717;
}

.vig-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.vig-image img {
  max-width: 280px;
  width: 100%;
}

.vig-content ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.vig-content li {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #000;
}

.vig-content strong {
  text-decoration: underline;
}

.check {
  color: #f4a623;
  font-size: 22px;
  margin-top: 2px;
}

.vig-cta {
  background: #e9e9e9;
  padding: 25px 30px;
  border-radius: 40px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  display: inline-block;
}

@media (max-width: 992px) {
  .vig-main-heading { font-size: 32px; }
  .vig-content li { font-size: 20px; }
}

@media (max-width: 600px) {
  .vig-top-heading { font-size: 22px; }
  .vig-main-heading { font-size: 26px; }
  .vig-content li { font-size: 18px; }
  .vig-cta {
    font-size: 17px;
    border-radius: 25px;
    padding: 20px;
  }
}

.vig-video{
  width: 100%;
  max-width: 320px;   /* control size */
  height: 300px;      /* make it taller */
  object-fit: cover;
}

@media (max-width: 600px){
  .vig-video{
    max-width: 100%;
    height: 300px;
  }
}

/* ================= STORY SECTION (LIKE SCREENSHOT) ================= */
.vstory{
  background:#fff;
  padding: 26px 0 34px;
}

.vstory__inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 26px;
}

.vstory__text{
  flex: 1.2;
  min-width: 320px;
}

.vstory__media{
  flex: .8;
  display:flex;
  justify-content:flex-end;
  min-width: 260px;
}

/* text */
.vstory__p{
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.35;
  color:#111;
  font-weight: 600;
}

.vstory__small{
  font-weight: 600;
  color:#222;
}

.vstory__bottomline{
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
}

.vstory__red{
  color: var(--red);
}

/* image block */
.vstory__imgwrap{
  width: 290px;
  max-width: 100%;
  background: #f1f1f1;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  border: 1px solid #e3e3e3;
}

.vstory__imgwrap img{
  width:100%;
  height:auto;
  display:block;
  border-radius: 14px;
}

/* RESPONSIVE: TEXT FIRST, IMAGE SECOND */
@media (max-width: 980px){
  .vstory__inner{
    flex-direction: column;
    gap: 18px;
  }

  .vstory__text{ order: 1; }
  .vstory__media{ order: 2; justify-content:center; }

  .vstory__imgwrap{
    width: min(360px, 100%);
  }

  .vstory__bottomline{
    font-size: 16px;
  }
}

/* ================= GOLD STANDARD SECTION ================= */
.gold{
  background:#fff;
  padding: 26px 0 18px;
}

.gold__title{
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 1000;
  color:#111;
  line-height: 1.15;
}

.gold__highlight{
  color:#f2b600; /* gold */
  font-weight: 1000;
}

.gold__row{
  display:flex;
  align-items:flex-start;
  gap: 18px;
}

.gold__img{
  width: 150px;
  flex: 0 0 150px;
}

.gold__img img{
  width:100%;
  height:auto;
  display:block;
  border-radius: 6px;
}

.gold__content{
  flex:1;
}

.gold__p{
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.35;
  color:#111;
  font-weight: 600;
}

.gold__red{
  color: var(--red);
  font-weight: 800;
}

.gold__bold{
  font-weight: 1000;
}

/* RESPONSIVE: HEADING → IMAGE → TEXT */
@media (max-width: 720px){
  .gold__row{
    flex-direction: column;
    gap: 12px;
  }

  .gold__img{
    width: 190px;
    flex: none;
  }

  .gold__content{
    text-align:left;
  }
}

/* ================= PROBLEM SECTION ================= */
.problem{
  background:#fff;
  padding: 34px 0 40px;
}

.problem__inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 34px;
}

/* LEFT IMAGE CARD */
.problem__media{
  flex: 0 0 380px;
  display:flex;
  justify-content:flex-start;
}

.problem__imgcard{
  width: 100%;
  background:#f3f3f3;
  border-radius: 26px;
  overflow:hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.14);
}

.problem__imgcard img{
  width:100%;
  height: 420px;
  object-fit: cover;
  display:block;
}

/* RIGHT CONTENT */
.problem__content{
  flex: 1;
  padding-top: 6px;
}

.problem__title{
  margin: 0 0 14px;
  font-size: 34px;
  font-weight: 1000;
  line-height: 1.12;
  color:#111;
  letter-spacing: -.2px;
}

.problem__red{
  color: var(--red);
}

.problem__quote{
  font-weight: 1000;
}

.problem__p{
  margin: 0 0 12px;
  font-size: 13.5px;
  line-height: 1.55;
  color:#111;
  font-weight: 600;
  max-width: 640px;
}

/* bold + underline emphasis line */
.problem__em{
  font-weight: 1000;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* single underline word */
.problem__u{
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  font-weight: 900;
}

/* ================= RESPONSIVE ================= */
/* Mobile order: TEXT first, IMAGE second (like modern layouts) */
@media (max-width: 980px){
  .problem__inner{
    flex-direction: column;
    gap: 18px;
  }

  .problem__content{ order: 1; }
  .problem__media{ order: 2; width: 100%; }

  .problem__imgcard img{
    height: 340px;
  }

  .problem__title{
    font-size: 26px;
  }

  .problem__p{
    max-width: 100%;
    font-size: 13.5px;
  }
}

/* ================= SOLUTION SECTION ================= */
.solution{
  background:#fff;
  padding: 34px 0 50px;
}

.solution__inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 34px;
}

/* LEFT */
.solution__content{
  flex: 1.15;
  max-width: 620px;
}

.solution__title{
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 1000;
  line-height: 1.18;
  color:#111;
}

.solution__red{ color: var(--red); }

.solution__p{
  margin: 0 0 12px;
  font-size: 13.5px;
  line-height: 1.55;
  color:#111;
  font-weight: 600;
}

/* YELLOW HIGHLIGHT QUOTE */
.solution__quote{
  position: relative;
  margin-top: 14px;
  background: #ffe83a;
  border-radius: 14px;
  padding: 16px 16px 16px 42px;
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
}

.solution__qmark{
  position:absolute;
  left: 14px;
  top: 6px;
  font-size: 42px;
  font-weight: 1000;
  color:#111;
  line-height: 1;
}

.solution__qtext{
  margin:0;
  font-size: 12.8px;
  line-height: 1.55;
  font-weight: 700;
  color:#111;
}

.solution__sig{
  margin: 10px 0 16px;
  font-size: 12px;
  font-weight: 900;
  color:#111;
}

/* CTA */
.solution__cta{
  display:flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.solution__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 210px;
  height: 46px;
  border-radius: 999px;
  background: var(--red);
  color:#fff;
  text-decoration:none;
  font-weight: 1000;
  letter-spacing: .4px;
  box-shadow: 0 14px 26px rgba(209,31,34,.26);
}

.solution__btn:hover{ filter: brightness(.95); }

.solution__note{
  font-size: 10.5px;
  font-weight: 800;
  color:#111;
}

/* RIGHT IMAGE CARD */
.solution__media{
  flex: .85;
  display:flex;
  justify-content:flex-end;
}

.solution__imgcard{
  width: 360px;
  max-width: 100%;
  background:#eef6ff;
  border-radius: 22px;
  padding: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.solution__imgcard img{
  width:100%;
  height: 420px;
  object-fit: cover;
  display:block;
  border-radius: 18px;
}

/* RESPONSIVE (TEXT FIRST, IMAGE SECOND) */
@media (max-width: 980px){
  .solution__inner{
    flex-direction: column;
    gap: 18px;
  }

  .solution__content{ order: 1; max-width: 100%; }
  .solution__media{ order: 2; justify-content:center; width: 100%; }

  .solution__imgcard{
    width: min(420px, 100%);
  }

  .solution__imgcard img{
    height: 320px;
  }

  .solution__title{
    font-size: 20px;
  }
}

/* ================= PREMIUM SECTION ================= */
.premium{
  background:#fff;
  padding: 34px 0 52px;
}

.premium__inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 34px;
}

/* LEFT IMAGE */
.premium__media{
  flex: 0 0 420px;
  display:flex;
  justify-content:flex-start;
}

.premium__imgcard{
  width: 100%;
  background:#f3f3f3;
  border-radius: 26px;
  overflow:hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.14);
}

.premium__imgcard img{
  width:100%;
  height: 460px;
  object-fit: cover;
  display:block;
}

/* RIGHT CONTENT */
.premium__content{
  flex: 1;
  padding-top: 2px;
  max-width: 560px;
}

.premium__title{
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 1000;
  line-height: 1.22;
  color:#111;
}

.premium__p{
  margin: 0 0 12px;
  font-size: 13.5px;
  line-height: 1.55;
  color:#111;
  font-weight: 600;
}

/* LIST */
.premium__list{
  list-style:none;
  padding:0;
  margin: 12px 0 18px;
  display:grid;
  gap: 12px;
}

.premium__list li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  font-size: 13.5px;
  line-height: 1.35;
  font-weight: 700;
  color:#111;
}

.premium__check{
  color: var(--red);
  font-weight: 1000;
  font-size: 18px;
  line-height: 1;
  margin-top: 2px;
}

.premium__liText small{
  display:block;
  font-size: 11.5px;
  font-weight: 600;
  color:#333;
  margin-top: 2px;
}

/* CTA */
.premium__cta{
  display:flex;
  flex-direction: column;
  align-items:center;
  gap: 8px;
  margin-top: 6px;
}

.premium__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 210px;
  height: 46px;
  border-radius: 999px;
  background: var(--red);
  color:#fff;
  text-decoration:none;
  font-weight: 1000;
  letter-spacing: .4px;
  box-shadow: 0 14px 26px rgba(209,31,34,.26);
}

.premium__btn:hover{ filter: brightness(.95); }

.premium__note{
  font-size: 10.5px;
  font-weight: 800;
  color:#111;
}

/* RESPONSIVE (TEXT FIRST, IMAGE SECOND) */
@media (max-width: 980px){
  .premium__inner{
    flex-direction: column;
    gap: 18px;
  }

  .premium__content{ order: 1; max-width: 100%; }
  .premium__media{ order: 2; width: 100%; justify-content:center; }

  .premium__media{ flex: none; }
  .premium__imgcard{
    width: min(480px, 100%);
  }

  .premium__imgcard img{
    height: 320px;
  }
}

/* ================= HOW IT WORKS SECTION ================= */
.how{
  background:#fff;
  padding: 34px 0 54px;
  text-align:center;
}

.how__kicker{
  font-size: 10.5px;
  letter-spacing: .9px;
  font-weight: 1000;
  color:#111;
  margin-bottom: 8px;
}

.how__title{
  margin: 0 auto 22px;
  font-size: 24px;
  font-weight: 1000;
  line-height: 1.2;
  color:#111;
  max-width: 900px;
}

/* GRID */
.how__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items:start;
  margin-top: 10px;
}

/* CARD */
.how__card{
  text-align:center;
}

.how__img{
  border-radius: 24px;
  overflow:hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
  background:#f3f3f3;
}

.how__img img{
  width:100%;
  height: 250px;
  object-fit: cover;
  display:block;
}

.how__h3{
  margin: 14px 0 8px;
  font-size: 13px;
  font-weight: 1000;
  color:#111;
}

.how__p{
  margin: 0 auto;
  font-size: 11.5px;
  line-height: 1.45;
  font-weight: 600;
  color:#111;
  max-width: 300px;
}

/* CTA */
.how__cta{
  margin-top: 26px;
  display:flex;
  flex-direction: column;
  align-items:center;
  gap: 8px;
}

.how__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 210px;
  height: 46px;
  border-radius: 999px;
  background: var(--red);
  color:#fff;
  text-decoration:none;
  font-weight: 1000;
  letter-spacing: .4px;
  box-shadow: 0 14px 26px rgba(209,31,34,.26);
}

.how__btn:hover{ filter: brightness(.95); }

.how__note{
  font-size: 10.5px;
  font-weight: 800;
  color:#111;
}

/* RESPONSIVE */
@media (max-width: 980px){
  .how__grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px){
  .how__title{ font-size: 20px; }
  .how__grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .how__img img{ height: 190px; }
}

/* ================= INGREDIENTS GRID (DARK) ================= */
.ing{
  background: #0b0c10;
  padding: 44px 0 54px;
  color:#fff;
}

/* Subtle background texture feel */
.ing::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.22;
  background: radial-gradient(900px 500px at 50% 0%, rgba(255,255,255,.10), transparent 60%);
}
.ing{ position:relative; }

.ing__inner{
  position:relative;
  z-index:1;
}

/* grids */
.ing__grid{
  display:grid;
  gap: 34px;
  margin-bottom: 44px;
}

.ing__grid--3{
  grid-template-columns: repeat(3, 1fr);
}

.ing__grid--2{
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
  margin: 0 auto;
}

/* card */
.ing__card{
  text-align:center;
}

.ing__img{
  position:relative;
  border-radius: 28px;
  overflow:hidden;
  box-shadow: 0 18px 46px rgba(0,0,0,.55);
  background:#111;
}

.ing__img img{
  width:100%;
  height: 250px;
  object-fit: cover;
  display:block;
  transform: scale(1.01);
}

/* small label badge bottom-left */
.ing__badge{
  position:absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(0,0,0,.65);
  border: 1px solid rgba(255,255,255,.18);
  color:#fff;
  font-size: 10px;
  font-weight: 900;
}

/* title & text */
.ing__title{
  margin: 14px 0 10px;
  font-size: 18px;
  font-weight: 1000;
  color:#fff;
}

.ing__text{
  margin: 0 auto;
  max-width: 320px;
  font-size: 12.2px;
  line-height: 1.55;
  font-weight: 600;
  color: rgba(255,255,255,.92);
}

/* RESPONSIVE */
@media (max-width: 980px){
  .ing__grid--3{ grid-template-columns: repeat(2, 1fr); }
  .ing__grid--2{ grid-template-columns: repeat(2, 1fr); }
  .ing__img img{ height: 230px; }
}

@media (max-width: 620px){
  .ing__grid--3{ grid-template-columns: 1fr; }
  .ing__grid--2{ grid-template-columns: 1fr; }
  .ing__img img{ height: 210px; }
  .ing__text{ max-width: 100%; }
}

/* ================= ALL AGES SECTION ================= */
.ages{
  background: radial-gradient(1000px 400px at 50% 0%, rgba(255,255,255,.08), transparent 60%),
              linear-gradient(#07080c, #111219);
  padding: 44px 0 46px;
  color:#fff;
  text-align:center;
}

.ages__title{
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 1000;
  line-height: 1.15;
  letter-spacing: -.2px;
}

.ages__sub{
  margin: 0 auto 26px;
  font-size: 11.5px;
  line-height: 1.55;
  font-weight: 700;
  color: rgba(255,255,255,.88);
  max-width: 820px;
}

/* GRID */
.ages__grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items:start;
  margin-top: 6px;
}

/* CARD */
.ages__card{
  text-align:center;
}

.ages__img{
  border-radius: 22px;
  overflow:hidden;
  background:#0f1016;
  box-shadow: 0 16px 40px rgba(0,0,0,.55);
}

.ages__img img{
  width:100%;
  height: 190px;
  object-fit: cover;
  display:block;
}

.ages__h3{
  margin: 12px 0 10px;
  font-size: 12.5px;
  font-weight: 1000;
  color:#fff;
  line-height: 1.15;
}

.ages__p{
  margin: 0 auto;
  font-size: 10.5px;
  line-height: 1.5;
  font-weight: 600;
  color: rgba(255,255,255,.86);
  max-width: 240px;
}

/* CTA (same style used earlier) */
.ages__cta{
  margin-top: 26px;
  display:flex;
  flex-direction: column;
  align-items:center;
  gap: 8px;
}

.ages__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 210px;
  height: 46px;
  border-radius: 999px;
  background: var(--red);
  color:#fff;
  text-decoration:none;
  font-weight: 1000;
  letter-spacing: .4px;
  box-shadow: 0 14px 26px rgba(209,31,34,.28);
}

.ages__btn:hover{ filter: brightness(.95); }

.ages__note{
  font-size: 10.5px;
  font-weight: 800;
  color: rgba(255,255,255,.85);
}

/* RESPONSIVE */
@media (max-width: 980px){
  .ages__grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .ages__img img{ height: 180px; }
}

@media (max-width: 620px){
  .ages__title{ font-size: 22px; }
  .ages__grid{ grid-template-columns: 1fr; }
  .ages__p{ max-width: 100%; }
  .ages__img img{ height: 200px; }
}
/* ================= FANS SECTION ================= */
.fans{
  background:#f3f3f3;
  padding: 40px 0 60px;
}

.fans__title{
  text-align:center;
  font-size: 30px;
  font-weight: 1000;
  margin: 0 0 10px;
  color:#111;
}

.fans__subrow{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.fans__sub{
  font-size: 24px;
  font-style: italic;
  font-weight: 600;
  color:#111;
}

.fans__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 26px;
  background: var(--red);
  color:#fff;
  text-decoration:none;
  font-weight: 1000;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(209,31,34,.25);
}

.fans__btn:hover{
  filter: brightness(.95);
}

/* GRID */
.fans__grid{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.fans__grid img{
  width:100%;
  height: 170px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 10px 20px rgba(0,0,0,.12);
  transition: .3s ease;
}

.fans__grid img:hover{
  transform: scale(1.04);
}

/* ================= RESPONSIVE ================= */

/* Tablet → 3 per row */
@media (max-width: 1024px){
  .fans__grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile → 2 per row */
@media (max-width: 620px){
  .fans__grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .fans__title{ font-size: 22px; }
  .fans__sub{ font-size: 18px; }
  .fans__grid img{ height: 150px; }
}

/* Very small screens → 3 tight images if needed */
@media (max-width: 420px){
  .fans__grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .fans__grid img{
    height: 100px;
  }
}
/* ================= BUYER BEWARE ================= */
.beware{
  background:#e9f4f8; /* light blue like screenshot */
  padding: 34px 0 44px;
}

.beware__title{
  margin: 0 0 18px;
  text-align:center;
  font-size: 30px;
  font-weight: 900;
  color:#111;
  line-height: 1.15;
}

.beware__bold{
  font-weight: 1000;
}

.beware__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 34px;
}

/* LEFT */
.beware__media{
  flex: 0 0 460px;
}

.beware__mediaWrap{
  position:relative;
  width:100%;
  min-height: 260px;
}

.beware__box{
  width:100%;
  display:block;
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(0,0,0,.14);
}

/* Seal overlay (adjust position as per your PNG) */
.beware__seal{
  position:absolute;
  right: -10px;
  bottom: -18px;
  width: 180px;
  height: auto;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,.18));
}

/* RIGHT */
.beware__content{
  flex: 1;
}

.beware__h3{
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 1000;
  color:#111;
  line-height: 1.25;
}

.beware__p{
  margin: 0 0 12px;
  font-size: 12.5px;
  line-height: 1.6;
  font-weight: 650;
  color:#111;
  max-width: 560px;
}

.beware__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 46px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--red);
  color:#fff;
  text-decoration:none;
  font-weight: 1000;
  letter-spacing: .4px;
  box-shadow: 0 14px 26px rgba(209,31,34,.22);
  margin-top: 8px;
}
.beware__btn:hover{ filter: brightness(.95); }

/* RESPONSIVE */
@media (max-width: 980px){
  .beware__row{
    flex-direction: column;
    align-items: stretch;
  }

  .beware__media{
    flex: none;
    width: 100%;
  }

  .beware__seal{
    right: 8px;
    bottom: -10px;
    width: 150px;
  }

  .beware__title{ font-size: 24px; }
  .beware__btn{ width: 100%; }
}
/* ================= HOW TO USE ================= */
.use{
  background:#fff;
  padding: 34px 0 54px;
  text-align:center;
}

.use__title{
  margin: 0 0 22px;
  font-size: 30px;
  font-weight: 1000;
  line-height: 1.15;
  color:#111;
}

.use__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items:start;
}

/* Card */
.use__card{
  text-align:center;
}

.use__img{
  border-radius: 26px;
  overflow:hidden;
  background:#f3f3f3;
  box-shadow: 0 14px 32px rgba(0,0,0,.12);
  transform: translateY(0);
  transition: transform .18s ease, box-shadow .18s ease;
}

.use__img img{
  width:100%;
  height: 260px;
  object-fit: cover;
  display:block;
}

.use__card:hover .use__img{
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
}

.use__step{
  margin: 16px 0 10px;
  font-size: 22px;
  font-weight: 1000;
  color:#111;
}

.use__p{
  margin: 0 auto;
  max-width: 320px;
  font-size: 12.5px;
  line-height: 1.6;
  font-weight: 650;
  color:#111;
}

/* Responsive */
@media (max-width: 980px){
  .use__grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .use__img img{ height: 220px; }
}

@media (max-width: 620px){
  .use__title{ font-size: 22px; }
  .use__grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .use__p{ max-width: 92%; }
  .use__img img{ height: 210px; }
}
/* ================= TIMELINE (RED) ================= */
.tl{
  position: relative;
  background: #990000;
  color:#fff;
  overflow:hidden;
  padding: 34px 0 48px;
}

/* red texture / swoosh look */
.tl__bg{
  position:absolute;
  inset:0;
  z-index:0;
  background:
    radial-gradient(900px 220px at 18% 30%, rgba(255,255,255,.08), transparent 60%),
    radial-gradient(900px 220px at 85% 70%, rgba(0,0,0,.18), transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,.06), transparent 40%),
    linear-gradient(0deg, rgba(0,0,0,.10), rgba(0,0,0,.10));
  opacity: .9;
}

.tl__inner{
  position:relative;
  z-index:1;
  text-align:center;
}

.tl__title{
  margin: 6px 0 10px;
  font-weight: 1000;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: -.2px;
}

.tl__sub{
  margin: 0 auto 18px;
  font-size: 13px;
  font-weight: 800;
  opacity: .95;
}

/* dotted line + dots */
.tl__track{
  width: min(980px, 100%);
  margin: 16px auto 22px;
  position: relative;
  height: 56px;
}

.tl__track::before{
  content:"";
  position:absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  background: rgba(255,255,255,.55);
  border-radius: 999px;
  background-image: linear-gradient(to right, rgba(255,255,255,.55) 40%, rgba(255,255,255,.0) 0%);
  background-size: 10px 2px; /* dotted effect */
  background-repeat: repeat-x;
  opacity: .9;
}

.tl__dot{
  position:absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(0,0,0,.35);
  border: 6px solid rgba(0,0,0,.22);
  background: rgba(255,255,255,.18);
}

.tl__dot::after{
  content:"";
  position:absolute;
  inset: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.25);
}

.tl__dot--1{ left: 12%; }
.tl__dot--2{ left: 38%; }
.tl__dot--3{ left: 64%; }
.tl__dot--4{ left: 88%; }

/* last dot bright (yellow) like screenshot */
.tl__dot.is-active{
  border-color: rgba(0,0,0,.20);
  background: rgba(255,220,0,.20);
}
.tl__dot.is-active::after{
  background: #ffe600;
  box-shadow: 0 0 0 8px rgba(255,230,0,.18);
}

/* cards grid */
.tl__cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
  margin: 6px 0 30px;
}

.tl__card{
  background: rgba(0,0,0,.30);
  border-radius: 16px;
  padding: 18px 16px 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(2px);
  min-height: 170px;
  transform: translateY(0);
  transition: transform .18s ease, box-shadow .18s ease;
}

.tl__card:hover{
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(0,0,0,.32);
}

.tl__day{
  margin: 0 0 10px;
  font-weight: 1000;
  font-size: 18px;
  color:#ffe600;
  text-shadow: 0 2px 0 rgba(0,0,0,.25);
}

.tl__p{
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  font-weight: 700;
  color: rgba(255,255,255,.92);
}

/* make last card a little taller */
.tl__card--tall{ min-height: 210px; }

/* CTA block */
.tl__cta{
  margin-top: 12px;
  padding: 26px 10px 0;
}

.tl__ctaTitle{
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 1000;
  line-height: 1.12;
}

.tl__ctaSub{
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 800;
  opacity: .95;
}

.tl__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 210px;
  height: 52px;
  border-radius: 999px;
  background: #ffe600;
  color:#000;
  text-decoration:none;
  font-weight: 1000;
  letter-spacing: .4px;
  box-shadow: 0 20px 40px rgba(0,0,0,.38);
  border: 2px solid rgba(0,0,0,.18);
}
.tl__btn:hover{ filter: brightness(.96); transform: translateY(-1px); }

.tl__note{
  margin-top: 10px;
  font-size: 10.5px;
  font-weight: 900;
  opacity: .95;
}

.tl__foot{
  margin: 18px auto 0;
  max-width: 860px;
  font-size: 10px;
  line-height: 1.6;
  font-weight: 700;
  opacity: .8;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 980px){
  .tl__title{ font-size: 26px; }
  .tl__cards{
    grid-template-columns: repeat(2, 1fr);
  }
  .tl__track{ height: 50px; }
}

@media (max-width: 620px){
  .tl{ padding: 28px 0 40px; }
  .tl__title{ font-size: 22px; }
  .tl__ctaTitle{ font-size: 22px; }
  .tl__cards{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* on small screens, reduce the timeline visual (still looks clean) */
  .tl__track{
    height: 34px;
    margin: 10px auto 16px;
  }
  .tl__dot{
    width: 34px;
    height: 34px;
    border-width: 4px;
  }
  .tl__dot::after{ inset: 8px; }

  .tl__btn{ width: 100%; max-width: 320px; }
}

/* optional smooth entrance */
@media (prefers-reduced-motion: no-preference){
  .tl__cards .tl__card{
    animation: tlUp .5s ease both;
  }
  .tl__cards .tl__card:nth-child(2){ animation-delay: .06s; }
  .tl__cards .tl__card:nth-child(3){ animation-delay: .12s; }
  .tl__cards .tl__card:nth-child(4){ animation-delay: .18s; }

  @keyframes tlUp{
    from{ opacity:0; transform: translateY(10px); }
    to{ opacity:1; transform: translateY(0); }
  }
}
/* ================= BIOPERINE SECTION ================= */
.bio{
  background:#fff;
  padding: 26px 0 44px;
}

.bio__inner{
  max-width: 980px;
}

/* top grey strip */
.bio__strip{
  background:#eeeeee;
  border-radius: 0; /* screenshot looks flat */
  padding: 16px 18px;
  margin-bottom: 18px;
}

.bio__stripTitle{
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 1000;
  color:#111;
}

.bio__stripText{
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 700;
  color:#111;
}

/* body paragraphs */
.bio__body{
  margin-bottom: 18px;
}

.bio__p{
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.75;
  font-weight: 650;
  color:#111;
  max-width: 920px;
}

/* bottom big rounded box */
.bio__ctaBox{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  background:#e9e9e9;
  border-radius: 14px;
  padding: 18px 18px;
  overflow:hidden;
}

.bio__ctaText{
  flex: 1;
}

.bio__ctaText p{
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 1000;
  color:#111;
}

/* underline lines like screenshot */
.bio__u{
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* right image */
.bio__ctaMedia{
  flex: 0 0 270px;
  display:flex;
  justify-content:flex-end;
  align-items:flex-end;
}

.bio__ctaMedia img{
  width: 100%;
  height: auto;
  display:block;
  transform: translateY(6px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 980px){
  .bio__ctaBox{
    flex-direction: column;
    text-align:left;
    align-items:flex-start;
  }

  .bio__ctaMedia{
    width: 100%;
    flex: none;
    justify-content:center;
  }

  .bio__ctaText p{
    font-size: 18px;
  }
}

@media (max-width: 620px){
  .bio__stripTitle{ font-size: 13px; }
  .bio__p{ font-size: 12.5px; }
  .bio__ctaText p{ font-size: 16px; }
  .bio__ctaMedia{ max-width: 320px; margin: 0 auto; }
}

/* ================= THOUSANDS BENEFITED + NO SIDE EFFECTS ================= */
.benefit{
  background:#fff;
  padding: 28px 0 44px;
}

.benefit__inner{
  max-width: 980px;
  margin: 0 auto;
}

.benefit__h3{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 1000;
  color:#111;
}

.benefit__h3--mt{ margin-top: 18px; }

.benefit__p{
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.75;
  font-weight: 650;
  color:#111;
}

.benefit__p--tight{
  max-width: 920px;
}

.benefit__hl{
  background: #fff28a;            /* yellow highlight */
  padding: 2px 6px;
  border-radius: 6px;
  font-weight: 900;
}

.benefit__h4{
  margin: 16px 0 10px;
  font-size: 13px;
  font-weight: 1000;
  color: var(--red);              /* red heading like screenshot */
}

/* Center big lines */
.benefit__center{
  margin-top: 18px;
  text-align:center;
  padding-top: 10px;
  border-top: 1px solid #e9e9e9;
}

.benefit__big{
  margin: 0 auto 10px;
  max-width: 980px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 1000;
  color:#111;
}

.benefit__bigSub{
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color:#111;
}

/* Responsive */
@media (max-width: 980px){
  .benefit{ padding: 22px 0 36px; }
  .benefit__big{ font-size: 16px; }
}

@media (max-width: 620px){
  .benefit__h3{ font-size: 15px; }
  .benefit__p{ font-size: 12.5px; }
  .benefit__big{ font-size: 15px; }
  .benefit__bigSub{ font-size: 13px; }
}

/* ================= GUARANTEE SECTION ================= */
.guar{
  position: relative;
  background: #f2f4f6;
  padding: 34px 0 44px;
  overflow: hidden;
}

/* subtle blurred bg like screenshot */
.guar__bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(700px 260px at 70% 40%, rgba(0,0,0,.06), transparent 60%),
    radial-gradient(900px 340px at 20% 30%, rgba(0,0,0,.05), transparent 62%),
    linear-gradient(0deg, rgba(255,255,255,.80), rgba(255,255,255,.80));
  filter: blur(0.2px);
  opacity: 1;
  z-index: 0;
}

.guar__inner{
  position: relative;
  z-index: 1;
}

.guar__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 34px;
}

/* LEFT */
.guar__content{
  flex: 1;
  max-width: 620px;
}

.guar__kicker{
  font-size: 12px;
  font-weight: 900;
  color:#111;
  opacity: .9;
  margin-bottom: 6px;
}

.guar__title{
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1.12;
  color:#111;
  letter-spacing: -.3px;
}

.guar__bold{ font-weight: 1000; }

.guar__p{
  margin: 0 0 12px;
  font-size: 12.8px;
  line-height: 1.75;
  font-weight: 650;
  color:#111;
  max-width: 590px;
}

.guar__link{
  color: var(--red);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.guar__link:hover{ filter: brightness(.95); }

/* RIGHT */
.guar__media{
  flex: 0 0 420px;
  display:flex;
  justify-content:flex-end;
}

.guar__imgWrap{
  position: relative;
  width: 100%;
  max-width: 420px;
  display:flex;
  justify-content:center;
  align-items:flex-end;
}

/* main image */
.guar__img{
  width: 100%;
  height: auto;
  display:block;
  filter: drop-shadow(0 20px 34px rgba(0,0,0,.22));
  border-radius: 6px;
}

/* badge overlay */
.guar__badge{
  position:absolute;
  top: -18px;
  right: -10px;
  width: 110px;
  height: auto;
  z-index: 2;
  filter: drop-shadow(0 16px 26px rgba(0,0,0,.18));
}

/* CTA bottom */
.guar__cta{
  margin-top: 18px;
  display:flex;
  flex-direction: column;
  align-items:center;
  gap: 8px;
}

.guar__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 240px;
  height: 52px;
  border-radius: 999px;
  background: var(--red);
  color:#fff;
  text-decoration:none;
  font-weight: 1000;
  letter-spacing: .4px;
  box-shadow: 0 18px 34px rgba(209,31,34,.22);
}
.guar__btn:hover{ filter: brightness(.95); transform: translateY(-1px); }

.guar__note{
  font-size: 10.5px;
  font-weight: 900;
  color:#111;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 980px){
  .guar__row{
    flex-direction: column;
    align-items: stretch;
  }

  .guar__media{
    flex: none;
    width: 100%;
    justify-content:center;
  }

  .guar__imgWrap{
    max-width: 520px;
    margin: 10px auto 0;
  }

  .guar__badge{
    right: 6px;
    top: -10px;
    width: 96px;
  }

  .guar__title{ font-size: 26px; }
  .guar__btn{ width: 100%; max-width: 360px; }
}

@media (max-width: 620px){
  .guar{ padding: 26px 0 38px; }
  .guar__title{ font-size: 22px; }
  .guar__p{ font-size: 12.4px; }
  .guar__badge{ width: 86px; }
}

/* ================= FOOTER ================= */
.vfooter{
  background: var(--red);
  color:#fff;
  padding: 26px 0 18px;
}

.vfooter__top{
  display:grid;
  grid-template-columns: 1.1fr 1.3fr 1.1fr;
  gap: 26px;
  align-items:start;
}

/* BRAND */
.vfooter__logo{
  display:inline-block;
  font-weight: 1000;
  font-size: 34px;
  letter-spacing: -.3px;
  color:#fff;
  text-decoration:none;
  line-height: 1;
  text-shadow: 0 3px 0 rgba(0,0,0,.25);
}
.vfooter__logo span{
  font-size: 18px;
  font-weight: 900;
  margin-left: 6px;
  opacity: .95;
}

/* Social circles */
.vfooter__social{
  display:flex;
  gap: 10px;
  margin: 14px 0 16px;
}

.vfooter__soc{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.8);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-decoration:none;
  font-weight: 1000;
  line-height: 1;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.vfooter__soc:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.12);
  border-color:#fff;
}

/* Disclaimer box */
.vfooter__disclaimerBox{
  border: 1px solid rgba(255,255,255,.75);
  padding: 12px 12px;
  max-width: 260px;
}
.vfooter__disclaimerBox p{
  margin: 0;
  font-size: 10.5px;
  line-height: 1.5;
  font-weight: 800;
  opacity: .95;
}

/* LINKS */
.vfooter__links{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 8px;
}

.vfooter__col{
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.vfooter__link{
  color:#fff;
  text-decoration:none;
  font-size: 12px;
  font-weight: 900;
  opacity: .95;
}
.vfooter__link:hover{ text-decoration: underline; text-underline-offset: 3px; }

/* NEWSLETTER */
.vfooter__newsTitle{
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 1000;
  line-height: 1.25;
}

.vfooter__label{
  display:block;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 6px;
  opacity: .95;
}

.vfooter__form{
  display:flex;
  flex-direction: column;
  gap: 10px;
  max-width: 280px;
}

.vfooter__input{
  height: 34px;
  border-radius: 0;
  border: 0;
  outline: none;
  padding: 0 10px;
  font-weight: 800;
}

.vfooter__submit{
  width: 120px;
  height: 34px;
  border: 0;
  cursor: pointer;
  font-weight: 1000;
  background: #ffe600;
  color:#111;
  box-shadow: 0 10px 22px rgba(0,0,0,.20);
}
.vfooter__submit:hover{ filter: brightness(.96); }

/* badges right bottom */
.vfooter__badges{
  display:flex;
  gap: 12px;
  align-items:center;
  margin-top: 14px;
}
.vfooter__badge{
  height: 44px;
  width: auto;
  display:block;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,.18));
}

/* MID TEXT */
.vfooter__mid{
  margin-top: 18px;
  text-align:center;
  padding-top: 10px;
}

.vfooter__copy{
  margin: 0 0 10px;
  font-size: 10.5px;
  font-weight: 900;
  line-height: 1.55;
  opacity: .95;
}

.vfooter__addr{
  margin: 0;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.6;
  opacity: .95;
}

/* fine print */
.vfooter__fine{
  margin-top: 14px;
  border-top: 1px solid rgba(255,255,255,.25);
  padding-top: 12px;
  text-align:center;
}
.vfooter__fine p{
  margin: 0 0 8px;
  font-size: 9.5px;
  line-height: 1.55;
  font-weight: 800;
  opacity: .92;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 980px){
  .vfooter__top{
    grid-template-columns: 1fr;
  }

  .vfooter__links{
    grid-template-columns: repeat(3, 1fr);
  }

  .vfooter__disclaimerBox{
    max-width: 100%;
  }

  .vfooter__form{
    max-width: 420px;
  }
}

@media (max-width: 620px){
  .vfooter__logo{ font-size: 30px; }

  .vfooter__links{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .vfooter__badges{
    justify-content:flex-start;
    flex-wrap: wrap;
  }

  .vfooter__submit{ width: 140px; }
}