:root{
  --navy:#1F2A33;
  --blue:#2F80ED;
  --gold:#D4AF37;
  --green:#2DBE7F;
  --amber:#F2A900;
  --red:#D64545;

  --bg:#F5F7FA;
  --card:#FFFFFF;
  --muted:#6B7280;
  --line:#E5E7EB;

  --shadow: 0 16px 40px rgba(0,0,0,.10);
  --shadowSoft: 0 10px 28px rgba(0,0,0,.08);
  --radius: 18px;
  --radiusSm: 12px;

  --max: 1180px;
}
*{box-sizing:border-box;}
html,body{height:100%;}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--navy);
  background: var(--bg);
}
a{color:inherit;text-decoration:none;}
.container{width:min(var(--max), calc(100% - 40px));margin:0 auto;}

.topbar{
  position:sticky;top:0;z-index:50;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229,231,235,.9);
}
.topbarInner{
  display:flex;align-items:center;justify-content:space-between;
  padding: 14px 0; gap:16px;
}
.brand{display:flex;align-items:center;gap:12px;min-width:220px;}
.brand img{height:88px;width:auto;display:block;} /* LOGO SIZE FIX */
.nav{display:flex;align-items:center;gap:18px;font-weight:700;color:rgba(31,42,51,.85);}
.nav a{padding:10px 10px;border-radius:10px;}
.nav a:hover{background:rgba(47,128,237,.10);}

.ctaRow{display:flex;gap:10px;align-items:center;justify-content:flex-end;}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 14px;border-radius:12px;border:1px solid transparent;
  font-weight:900;cursor:pointer;white-space:nowrap;
  transition:transform .05s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.btn:active{transform:translateY(1px);}
.btnPrimary{
  background: linear-gradient(180deg, #FFB24C, #F28A00);
  color:#111;
  box-shadow: 0 10px 24px rgba(242,138,0,.25);
}
.btnGhost{
  background: transparent;
  border-color: rgba(31,42,51,.18);
  color: rgba(31,42,51,.90);
}
.btnGhost:hover{
  border-color: rgba(47,128,237,.55);
  background: rgba(47,128,237,.08);
}

.hero{
  position:relative;
  padding:54px 0 26px;
  color:#fff;
  overflow:hidden;
  background:#0b0f14;
}

/* BACKGROUND CAROUSEL LAYERS (behind form) */
.hero .heroBg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transform: scale(1.03) translateX(-18px);
  transition: opacity 900ms ease, transform 4500ms ease;
  will-change: opacity, transform;
  z-index:0;
}
.hero .heroBg.is-active{
  opacity:1;
  transform: scale(1.03) translateX(18px);
}
.hero .heroOverlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.70), rgba(0,0,0,.55));
  z-index:1;
}
.hero > .container{ position:relative; z-index:2; }

.heroGrid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:30px;
  align-items:stretch;
}
.hero h1{
  margin:0 0 10px;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height:1.05;
  letter-spacing:-0.02em;
}
.hero p{
  margin:0 0 22px;
  color: rgba(255,255,255,.85);
  font-size:18px;
  line-height:1.45;
  max-width:62ch;
}

.searchCard{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.searchRow{
  display:grid;
  grid-template-columns:1.1fr .9fr auto;
  gap:10px;
  align-items:stretch;
}
.field{display:flex;flex-direction:column;gap:6px;}
.label{
  font-size:12px;
  color: rgba(255,255,255,.70);
  font-weight:900;
  letter-spacing:.02em;
  text-transform: uppercase;
}
input,select,textarea{
  width:100%;
  padding:14px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.95);
  font-size:15px;
  outline:none;
}
textarea{min-height:120px;resize:vertical;}
input:focus,select:focus,textarea:focus{
  border-color: rgba(242,138,0,.75);
  box-shadow: 0 0 0 4px rgba(242,138,0,.25);
}
.notePill{
  margin-top:12px;
  display:inline-flex;
  gap:10px;align-items:center;
  padding:10px 12px;
  border-radius:999px;
  background: rgba(212,175,55,.18);
  border: 1px solid rgba(212,175,55,.38);
  color: rgba(255,255,255,.92);
  font-weight:900;
  width:fit-content;
}
.notePill .dot{
  width:10px;height:10px;border-radius:50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,175,55,.18);
}

.heroSide{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:18px;
}
.heroSide h3{margin:0 0 10px;font-size:16px;color:rgba(255,255,255,.92);}
.trustList{margin:0;padding:0;list-style:none;display:flex;flex-direction:column;gap:10px;}
.trustItem{
  display:flex;gap:12px;align-items:flex-start;
  padding:12px;border-radius:14px;
  background: rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.08);
}
.badgeIcon{
  width:38px;height:38px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  font-weight:900;flex:0 0 auto;
}
.bGold{background: rgba(212,175,55,.16); border:1px solid rgba(212,175,55,.35);}
.bVer{background: rgba(45,190,127,.14); border:1px solid rgba(45,190,127,.30);}
.bFree{background: rgba(47,128,237,.14); border:1px solid rgba(47,128,237,.30);}
.trustItem strong{display:block;color:#fff;}
.trustItem span{display:block;color: rgba(255,255,255,.75);font-size:13px;line-height:1.25;}

.steps{padding:22px 0 0;margin-top:-18px;}
.stepsRow{
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadowSoft);
  border: 1px solid rgba(229,231,235,.75);
  display:grid;
  grid-template-columns:repeat(3,1fr);
  overflow:hidden;
}
.step{padding:18px;display:flex;gap:14px;align-items:flex-start;}
.step + .step{border-left:1px solid rgba(229,231,235,.9);}
.stepIcon{
  width:44px;height:44px;border-radius:14px;
  background: rgba(242,138,0,.12);
  border: 1px solid rgba(242,138,0,.25);
  display:flex;align-items:center;justify-content:center;
  flex:0 0 auto;font-weight:900;color: rgba(31,42,51,.95);
}
.step h4{margin:0 0 6px;font-size:16px;}
.step p{margin:0;color:var(--muted);font-size:14px;line-height:1.35;}

.section{padding:44px 0;}
.sectionHeader{display:flex;align-items:flex-end;justify-content:space-between;gap:18px;margin-bottom:16px;}
.sectionHeader h2{margin:0;font-size:26px;letter-spacing:-0.01em;}
.sectionHeader p{margin:0;color:var(--muted);max-width:70ch;line-height:1.4;}

.chips{display:flex;gap:10px;flex-wrap:wrap;}
.chip{
  background:#fff;
  border:1px solid rgba(229,231,235,.95);
  padding:12px 14px;
  border-radius:999px;
  display:flex;gap:10px;align-items:center;
  box-shadow: 0 10px 20px rgba(0,0,0,.06);
  font-weight:900;
}

.grid{display:grid;grid-template-columns:1.1fr .9fr;gap:18px;align-items:start;margin-top:16px;}
.card{
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(229,231,235,.85);
  box-shadow: var(--shadowSoft);
  overflow:hidden;
}
.cardHeader{
  padding:14px 16px;
  display:flex;align-items:center;justify-content:space-between;
  gap:12px;
  background: linear-gradient(180deg, rgba(242,138,0,.18), rgba(242,138,0,.06));
  border-bottom: 1px solid rgba(229,231,235,.75);
}
.cardHeader h3{margin:0;font-size:16px;}
.list{display:flex;flex-direction:column;}
.row{
  display:flex;gap:14px;align-items:center;
  padding:14px 16px;
  border-top:1px solid rgba(229,231,235,.85);
}
.row:first-child{border-top:none;}
.avatar{
  width:44px;height:44px;border-radius:14px;
  background: linear-gradient(180deg, #E5E7EB, #F9FAFB);
  border: 1px solid rgba(229,231,235,.95);
  display:flex;align-items:center;justify-content:center;
  font-weight:900;color: rgba(31,42,51,.75);
}
.rowMain{flex:1 1 auto;min-width:0;}
.rowMain strong{display:block;}
.rowMain small{display:block;color:var(--muted);margin-top:3px;}
.stars{color: var(--amber); font-weight:900; letter-spacing:1px;}
.btnSm{
  padding:10px 12px;border-radius:12px;
  border: 1px solid rgba(31,42,51,.15);
  background:#fff;
  font-weight:900;
}
.btnSmPrimary{
  border-color:transparent;
  background: linear-gradient(180deg, #FFB24C, #F28A00);
  color:#111;
}

.testGrid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:16px;}
.tCard{
  background:#fff;
  border:1px solid rgba(229,231,235,.85);
  border-radius: var(--radius);
  box-shadow: var(--shadowSoft);
  padding:16px;
  display:flex;flex-direction:column;gap:10px;
}
.tTop{display:flex;gap:12px;align-items:center;}
.tAvatar{
  width:44px;height:44px;border-radius:14px;
  background: rgba(47,128,237,.10);
  border: 1px solid rgba(47,128,237,.18);
  display:flex;align-items:center;justify-content:center;
  font-weight:900;color: rgba(47,128,237,.95);
}
.tName{font-weight:900;}
.tMeta{color:var(--muted);font-size:13px;}
.tQuote{color: rgba(31,42,51,.92);font-size:14px;line-height:1.5;}
.tStars{color: var(--amber); font-weight:900; letter-spacing:1px;}

.faqStrip{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:16px;}
.faq{
  background:#fff;
  border:1px solid rgba(229,231,235,.85);
  border-radius: var(--radius);
  box-shadow: var(--shadowSoft);
  padding:16px;
}
.faq strong{display:block;margin-bottom:6px;}
.faq span{color:var(--muted);font-size:14px;line-height:1.45;}

.footer{
  padding:34px 0 50px;
  border-top:1px solid rgba(229,231,235,.9);
  background:#fff;
}
.footerGrid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:16px;
  align-items:start;
}
.footerLinks{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-end;}
.footerLinks a{color: rgba(31,42,51,.75); font-weight:800;}
.footerLinks a:hover{color: rgba(47,128,237,.95);}

@media (max-width:980px){
  .heroGrid{grid-template-columns:1fr;}
  .grid{grid-template-columns:1fr;}
  .testGrid{grid-template-columns:1fr;}
  .faqStrip{grid-template-columns:1fr;}
  .nav{display:none;}
  .brand{min-width:auto;}
}
@media (max-width:720px){
  .searchRow{grid-template-columns:1fr;}
  .stepsRow{grid-template-columns:1fr;}
  .step + .step{border-left:none;border-top:1px solid rgba(229,231,235,.9);}
  .topbarInner{flex-wrap:wrap;}
  .ctaRow{width:100%;}
  .ctaRow .btn{flex:1;}
  .container{width:calc(100% - 28px);}
}
/* Badge images (PNG) */
.badgeRow{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:10px;
  align-items:center;
}

.badgeImg{
  height:42px;
  width:auto;
  display:block;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.18));
}

.badgeImg.small{
  height:36px;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.14));
}

.tradeCard{
  padding:16px;
}

.tradeCardTop{
  display:flex;
  align-items:center;
  gap:14px;
}

.tradeAvatar{
  width:54px;
  height:54px;
  border-radius:16px;
  background: linear-gradient(180deg, #E5E7EB, #F9FAFB);
  border: 1px solid rgba(229,231,235,.95);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  color: rgba(31,42,51,.75);
  overflow:hidden;
}
.tradeAvatar img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.tradeMeta{
  color: var(--muted);
  font-size:13px;
  margin-top:4px;
}

.tradeActions{
  margin-left:auto;
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

@media(max-width:720px){
  .tradeActions{ width:100%; justify-content:flex-end; margin-left:0; }
  .badgeImg{ height:38px; }
}
/* Badge carousel (homepage) */
.badgeBelt{
  position: relative;
  padding: 16px;
  overflow: hidden;
}

.badgeTrack{
  display:flex;
  gap:14px;
  align-items:center;
  overflow-x:auto;
  padding: 10px 6px;
  scroll-behavior: smooth;
}

/* Hide scrollbar but keep scroll */
.badgeTrack::-webkit-scrollbar{height:10px}
.badgeTrack::-webkit-scrollbar-thumb{background:rgba(31,42,51,.15);border-radius:999px}
.badgeTrack{scrollbar-color: rgba(31,42,51,.20) transparent}

.badgeItem{
  flex: 0 0 auto;
  position: relative;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 6px;
  border-radius: 14px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(229,231,235,.85);
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
  cursor: pointer;
}

.badgeItem img{
  height: 56px;
  width: auto;
  display:block;
  transition: transform 160ms ease, filter 160ms ease;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.18));
}

.badgeItem:hover img{
  transform: scale(2.2);
  filter: drop-shadow(0 20px 30px rgba(0,0,0,.30));
  z-index: 9999;
}

/* Tooltip */
.badgeTip{
  position:absolute;
  left: 16px;
  right: 16px;
  bottom: 12px;
  background: rgba(15,23,32,.92);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 12px 12px;
  color: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events:none;
}

.badgeTip.show{
  opacity: 1;
  transform: translateY(0);
}

.badgeTipTitle{
  font-weight: 900;
  margin-bottom: 4px;
}

.badgeTipDesc{
  font-size: 13px;
  color: rgba(255,255,255,.80);
  line-height: 1.35;
}
/* ===== Badge carousel (Homepage) — seamless flow ===== */

.badgeBelt{
  position: relative;
  padding: 18px;
  overflow: hidden; /* keeps the belt clean */
}

/* Moving belt container */
.badgeTrack{
  display:flex;
  gap:18px;
  align-items:center;
  width: max-content;
  animation: badgeFlow 28s linear infinite;
  will-change: transform;
  padding: 10px 6px;
}

/* Pause flow on hover (so user can inspect) */
.badgeBelt:hover .badgeTrack{
  animation-play-state: paused;
}

@keyframes badgeFlow{
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Individual badge tile */
.badgeItem{
  flex: 0 0 auto;
  position: relative;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(229,231,235,.90);
  box-shadow: 0 14px 28px rgba(0,0,0,.08);
  cursor: pointer;
}

/* BIGGER by default */
.badgeItem img{
  height: 78px;   /* was too small */
  width: auto;
  display:block;
  transition: transform 160ms ease, filter 160ms ease;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.22));
}

/* POP OUT ABOVE EVERYTHING */
.badgeItem{
  overflow: visible;
  z-index: 1;
}
.badgeItem:hover{
  z-index: 99999; /* ensures it sits above all */
}

.badgeItem:hover img{
  transform: scale(2.6) translateY(-10px);
  filter: drop-shadow(0 26px 40px rgba(0,0,0,.35));
}

/* Tooltip BELOW belt (so it never gets covered) */
.badgeTip{
  margin-top: 14px;
  background: rgba(15,23,32,.92);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 12px 14px;
  color: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events:none;
}
.badgeTip.show{
  opacity: 1;
  transform: translateY(0);
}
.badgeTipTitle{
  font-weight: 900;
  margin-bottom: 4px;
}
.badgeTipDesc{
  font-size: 13px;
  color: rgba(255,255,255,.80);
  line-height: 1.35;
}

/* Responsive tweaks */
@media(max-width:720px){
  .badgeItem img{ height: 66px; }
}
<style>
  /* ===========================
     MOBILE NAV (Hamburger)
     =========================== */
  .navToggle{
    display:none;
    width:44px;height:44px;
    border-radius:12px;
    border:1px solid rgba(229,231,235,.9);
    background: rgba(255,255,255,.92);
    box-shadow: 0 10px 24px rgba(0,0,0,.06);
    cursor:pointer;
    align-items:center;
    justify-content:center;
    padding:0;
  }
  .navToggle span{
    display:block;
    width:18px;
    height:2px;
    background:#111827;
    border-radius:2px;
    position:relative;
  }
  .navToggle span::before,
  .navToggle span::after{
    content:"";
    position:absolute;
    left:0;
    width:18px;
    height:2px;
    background:#111827;
    border-radius:2px;
  }
  .navToggle span::before{ top:-6px; }
  .navToggle span::after{ top:6px; }

  /* Mobile drawer */
  .mnavOverlay{
    position:fixed;
    inset:0;
    background: rgba(0,0,0,.55);
    display:none;
    z-index:999999;
  }
  .mnavOverlay.show{ display:block; }

  .mnavPanel{
    position:fixed;
    top:0;
    right:0;
    height:100%;
    width:min(86vw, 360px);
    background:#fff;
    box-shadow: -18px 0 60px rgba(0,0,0,.25);
    transform: translateX(100%);
    transition: transform 180ms ease;
    z-index:1000000;
    display:flex;
    flex-direction:column;
  }
  .mnavPanel.show{ transform: translateX(0); }

  .mnavHead{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 14px;
    border-bottom:1px solid rgba(229,231,235,.95);
  }
  .mnavClose{
    width:44px;height:44px;
    border-radius:12px;
    border:1px solid rgba(229,231,235,.9);
    background:#fff;
    cursor:pointer;
    font-size:22px;
    font-weight:900;
    line-height:1;
  }

  .mnavLinks{
    padding:12px 14px;
    display:flex;
    flex-direction:column;
    gap:8px;
  }
  .mnavLinks a{
    padding:12px 12px;
    border-radius:12px;
    text-decoration:none;
    color:#111827;
    font-weight:800;
    background: rgba(15,23,32,.04);
    border:1px solid rgba(15,23,32,.08);
  }
  .mnavLinks a.active{
    background: rgba(47,128,237,.12);
    border-color: rgba(47,128,237,.22);
  }

  .mnavCtas{
    margin-top:auto;
    padding:14px;
    border-top:1px solid rgba(229,231,235,.95);
    display:flex;
    gap:10px;
  }
  .mnavCtas .btn{ width:100%; justify-content:center; }

  /* Responsive behaviour */
  @media(max-width: 900px){
    .topbar .nav{ display:none; }
    .navToggle{ display:inline-flex; }
  }
</style>
