/* ===================== ROOT & BASE ===================== */
:root{
  --blue:#015eea;
  --blue2:#2B8EFF;
  --blueDeep:#1a89c9;
  --pageBg:#F0F4F7;
  --shadowBlue: rgba(0, 175, 255, 0.5);
  --cardShadow: 0px 0px 9.73px 0px rgb(1 94 234);
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background:#f3f6f9;
  color:#111;
}

/* container */
.wrap, .container{
  max-width:1280px;
  margin:0 auto;
  padding:0 16px;
}

/* ===================== HEADER ===================== */
.siteHeader{
  position:fixed;
  top:0;left:0;right:0;
  z-index:50;
  height:50px;
  background:rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
  display:flex;
  align-items:center;
}
@media (min-width:768px){ .siteHeader{ height:63px; } }

.siteHeader__inner{
  width:100%;
  padding:0 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  max-width:1280px;
  margin:0 auto;
}

.siteHeader__left{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  width:100%;
}
@media (min-width:768px){ .siteHeader__left{ width:auto; } }

.menuBtn{
  border:0;
  background:transparent;
  padding:8px;
  border-radius:8px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.menuBtn img{ width:22px; height:22px; display:block; }
@media (min-width:768px){ .menuBtn{ display:none; } }

.logoLink{ display:inline-flex; align-items:center; }
.logoImg{ width:136px; height:23px; display:block; }
@media (min-width:768px){ .logoImg{ width:auto; height:auto; } }

.btnRegisterMobile{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:4px 16px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  color:#0161eb;
  border:2px solid #0161eb;
  text-transform:uppercase;
  box-shadow: 2px 4px 7px rgba(20,130,255,.50);
  background:#fff;
  margin-right:8px;
}
@media (min-width:768px){ .btnRegisterMobile{ display:none; } }

.siteHeader__nav{ display:none; }
@media (min-width:768px){
  .siteHeader__nav{
    display:flex;
    position:absolute;
    left:50%;
    top:50%;
    transform: translate(-50%,-50%);
    align-items:center;
    gap:32px;
  }
}
.navItem{
  display:flex;
  align-items:center;
  gap:12px;
  color:#0166eb;
  font-weight:500;
  font-size:16px;
  text-decoration:none;
  white-space:nowrap;
}
.navIcon{ width:24px; height:24px; display:block; }

.siteHeader__right{ display:none; }
@media (min-width:768px){ .siteHeader__right{ display:flex; align-items:center; } }

.btnHome{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 24px;
  border-radius:999px;
  background: linear-gradient(to bottom, #0160ea, #0184f0);
  border: 2.16px solid #fff;
  color:#fff;
  text-decoration:none;
  text-transform:uppercase;
  font-weight:800;
  font-size:16px;
  box-shadow: 0 0 14.38px rgba(0, 175, 255, 0.5);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btnHome:hover{
  transform: scale(1.08);
  box-shadow: 0 0 22px rgba(0, 175, 255, 0.7), 0 6px 18px rgba(0, 0, 0, 0.15);
}
.btnHome:active{ transform: scale(1.03); }
.homeIcon{ width:18px; height:18px; display:block; }

.pagePad{ height:50px; }
@media (min-width:768px){ .pagePad{ height:63px; } }

/* ===================== HERO + MARQUEE ===================== */
.heroSection{ width:100%; background:#f0f4f7; }

.heroSlider{
  position:relative;
  width:100%;
  overflow:hidden;
  background: linear-gradient(180deg, #d8f3ff, #9fe7ff);
}
.heroSlides{ position:relative; width:100%; }
.heroSlide{
  position:absolute;
  inset:0;
  opacity:0;
  transition: opacity .45s ease;
}
.heroSlide.is-active{ opacity:1; position:relative; }
.heroSlide img{ width:100%; display:block; object-fit:contain; }
@media (min-width:768px){ .heroSlide img{ object-fit:cover; } }

.heroDots{
  position:absolute;
  left:50%;
  bottom:14px;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  z-index:5;
}
.heroDots .dot{
  width:11px;height:11px;
  border-radius:999px;
  border:0;
  cursor:pointer;
  background: rgba(255,255,255,.65);
  box-shadow: 0 2px 6px rgba(0,0,0,.18);
}
.heroDots .dot.is-active{ background:#015eea; }

.marqueeWrap{
  position:relative;
  margin-top:-10px;
  padding:0 16px 10px;
}
.marqueeBar{
  max-width:1280px;
  margin:0 auto;
  background:#0181ef;
  border-radius:999px;
  padding:6px 12px;
  display:flex;
  align-items:center;
  gap:10px;
  overflow:hidden;
}
.marqueeIcon{ width:24px;height:24px;flex:0 0 auto; }
.marqueeViewport{ overflow:hidden; width:100%; }
.marqueeTrack{
  display:flex;
  width:max-content;
  gap:48px;
  align-items:center;
  will-change:transform;
  animation: marquee-scroll 55s linear infinite;
}
.marqueeItem{
  color:#fff;
  font-weight:700;
  font-size:13px;
  white-space:nowrap;
}
.marqueeItem b{ font-weight:900; }
.marqueeBar:hover .marqueeTrack{ animation-play-state:paused; }
@keyframes marquee-scroll{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-50%); }
}
@media (min-width:768px){ .marqueeItem{ font-size:16px; } }

/* ===================== CTA (NO breathe) ===================== */
.ctaBar{
  background:#f0f4f7;
  padding:10px 0 0;
  margin-top:0;
  overflow:visible;
}
.ctaBar__inner{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:26px;
  flex-wrap:wrap;
  overflow:visible;
}
.ctaBtn{
  min-width:260px;
  height:54px;
  padding:0 34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  font-weight:900;
  letter-spacing:.6px;
  text-decoration:none;
  font-size:18px;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
  transform:scale(1);
  transform-origin:center;
  position:relative;
  z-index:1;
}
.ctaBtn:hover{ transform:scale(1.1); }
.ctaBtn:active{ transform:scale(1.05); }

.ctaBtn--ghost{
  background:#fff;
  border:2px solid #017bee;
  color:#017bee;
  box-shadow: 0 8px 18px rgba(0,173,238,.18);
}
.ctaBtn--ghost:hover{
  background:#017bee;
  color:#fff;
  border-color:#017bee;
  box-shadow: 0 18px 40px rgba(0,173,238,.35);
}
.ctaBtn--solid{
  background: linear-gradient(135deg, #0164eb, #0094f3);
  border:2px solid #015eea;
  color:#fff;
  box-shadow: 0 10px 22px rgba(0,173,238,.25);
}
.ctaBtn--solid:hover{
  background:#fff;
  color:#017bee;
  border-color:#017bee;
  box-shadow: 0 22px 45px rgba(0,173,238,.35);
}
@media (max-width:640px){
  .ctaBtn{ min-width:220px; width:100%; max-width:420px; }
  .ctaBar__inner{ gap:14px; }
}

/* ===================== BENEFITS + INCOME ===================== */
.benefitsSection{
  background: var(--pageBg);
  padding: 22px 0 10px;
}

.sectionTitle{
  text-align:center;
  color:#017bee;
  font-weight:900;
  letter-spacing:.5px;
  margin:10px 0 8px;
  text-transform:uppercase;
  font-size:34px;
}
.sectionTitle--big{
  margin-top:26px;
  margin-bottom:16px;
  font-size:36px;
}

.benefitGrid{
  margin-top:50px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:24px;
}
.benefitCard{
  position:relative;
  background:#fff;
  border:1px solid rgba(20,130,255,.18);
  box-shadow: var(--cardShadow);
  border-radius:18px;
  padding:52px 14px 14px;
  text-align:center;
  min-height:210px;
}
.benefitIcon{
  position:absolute;
  left:0; right:0;
  top:-34px;
  display:flex;
  justify-content:center;
}
.benefitIcon img{ width:68px; height:68px; display:block; }
.benefitTitle{
  margin:0 0 6px;
  color:#0161eb;
  font-size:19px;
  font-weight:900;
  text-transform:uppercase;
}
.benefitText{
  margin:0;
  text-align:justify;
  color:#4E4E4E;
  font-size:14px;
  font-weight:500;
  line-height:1.25;
}
.blueStrong{ color:#0161eb; font-weight:700; }

/* income grid (keep your grid version) */
.incomeGrid{
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap:28px;
  align-items:center;
  margin-top:6px;
}
.incomeLeft{ display:flex; justify-content:center; }
.sixcoin{
  max-width:520px;
  width:100%;
  height:auto;
  object-fit:contain;
}

.videoFrame{ width:100%; }
.videoWrapper{
  position:relative;
  width:100%;
  padding-bottom:56.25%;
  border-radius:12px;
  overflow:hidden;
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
  background:#000;
}
.videoWrapper iframe{
  position:absolute;
  top:0; left:0;
  width:100%;
  height:100%;
  border:0;
}

/* tagline row */
.incomeTaglineRow{
  max-width:1280px;
  margin:18px auto 0;
  padding:0 16px;
  text-align:center;
  font-size:18px;
  line-height:1.6;
  color:#4e4e4e;
  font-weight:500;
}
.incomeTaglineRow b{ font-weight:900; }

@media (max-width:1024px){
  .benefitGrid{ grid-template-columns: repeat(2, 1fr); gap:16px; }
}
@media (max-width:768px){
  .sectionTitle{ font-size:28px; }
  .sectionTitle--big{ font-size:28px; }
  .benefitTitle{ font-size:13px; }
  .benefitText{ font-size:12px; }
  .incomeGrid{ grid-template-columns:1fr; gap:16px; }
  .incomeTaglineRow{ font-size:16px; margin-top:14px; }
}

/* ===================== STEPS ===================== */
.stepsBlock{
  background: var(--pageBg);
  padding:26px 0 22px;
}

.stepsRow{
  display:flex;
  gap:46px;
  align-items:stretch;
}
.step{
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  position:relative;
}
.step:not(:last-child)::after{
  content:"";
  position:absolute;
  top: calc(90px + 12px + 105px);
  transform: translateY(-50%);
  right:-52px;
  width:56px;
  height:56px;
  background: url("../img/icons/step-ico.png") center/contain no-repeat;
  opacity:.9;
  filter: drop-shadow(0 4px 6px rgba(0, 173, 238, .35));
  transition: transform .25s ease, opacity .25s ease;
}

.step__icon{
  width:90px;
  height:90px;
  margin:0 auto 12px;
  border-radius:999px;
  overflow:hidden;
  box-shadow: 0 10px 18px rgba(0,0,0,.10);
}
.step__icon img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.step__card{
  flex:1;
  width:100%;
  border-radius:16px;
  padding:12px 12px 18px;
  border:2px solid #fff;
  background: linear-gradient(180deg, #008ff2 0%, #017aef 30%, #015eea 100%);
  box-shadow: inset 0 5.1px 10.19px rgba(0,0,0,.25), 0 10px 18px rgba(0,0,0,.06);
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.step__pill{
  background:#fff;
  color:#0161eb;
  border-radius:30px;
  padding:10px 10px;
  font-weight:900;
  font-size:13px;
  line-height:1.15;
  text-transform:uppercase;
  box-shadow: 0 0 10.19px rgba(255,255,255,1);
  min-height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.step__text{
  margin-top:14px;
  color:#fff;
  font-size:15px;
  line-height:1.7;
  font-weight:500;
  text-align:center;
  padding:0 18px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-shadow: 0 1px 1px rgba(0,0,0,.08);
}
.step:hover .step__card{
  transform: translateY(-6px);
  box-shadow: inset 0 5.1px 10.19px rgba(0,0,0,.22), 0 18px 28px rgba(0,0,0,.12);
  filter: brightness(1.03) saturate(1.03);
}
.step:hover:not(:last-child)::after{
  transform: translateY(calc(-50% - 6px));
  opacity:1;
}

.agentTitleBar{
  display:flex;
  align-items:center;
  gap:12px;
  margin:26px 0 10px;
}
.agentTitleBar__star{
  width:42px;
  height:42px;
  border-radius:12px;
  background:#0161eb;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  flex:0 0 auto;
}
.agentTitleWrap{ display:flex; flex-direction:column; }
.agentTitleText{
  font-size:22px;
  font-weight:900;
  color:#0161eb;
  text-transform:uppercase;
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}
.agentTitleLine{
  width:100%;
  height:3px;
  background:#0161eb;
  margin-top:6px;
}
.agentTitleText:hover{ transform: translateX(10px); }

.agentBox{
  border:2px solid #0161eb;
  border-radius:12px;
  background:#fff;
  padding:14px 16px;
  font-size:14px;
  line-height:1.6;
}
.agentBox p{ margin:0 0 6px; }
.agentBox p:last-child{ margin-bottom:0; }

/* ===================== COMMISSION ===================== */
.commissionSection{
  background:#F0F4F7;
  padding:30px 0;
}
.commissionTitle{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:14px;
  cursor:pointer;
}
.commissionTitle__badge{
  width:42px;
  height:42px;
  border-radius:12px;
  background:#015eea;
  color:#fff;
  font-weight:900;
  display:flex;
  align-items:center;
  justify-content:center;
}
.commissionTitleWrap{ display:flex; flex-direction:column; }
.commissionTitleText{
  font-size:22px;
  font-weight:900;
  color:#015eea;
  text-transform:uppercase;
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}
.commissionTitleLine{
  width:100%;
  height:3px;
  background:#015eea;
  margin-top:6px;
}
.commissionTitle:hover .commissionTitleText{ transform: translateX(10px); }

.commissionBox{
  border:2px solid #015eea;
  border-radius:16px;
  padding:20px;
  background:#fff;
}

/* your blue-line table style (kept) */
.commissionTableWrap{
  border:2px solid #015eea;
  border-radius:12px;
  overflow:hidden;
  margin-bottom:20px;
}
.commissionTable{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  text-align:center;
  font-size:16px;
}
.commissionTable thead th{
  background:#015eea;
  color:#fff;
  padding:14px;
  font-weight:700;
  border-right:1px solid #ffffff40;
}
.commissionTable thead th:last-child{ border-right:none; }
.commissionTable tbody td{
  padding:14px;
  font-weight:600;
  border-top:1px solid #015eea;
  border-right:1px solid #015eea;
}
.commissionTable tbody tr td:last-child{ border-right:none; }
.commissionTable tbody tr td:first-child{ border-left:1px solid #015eea; }
.commissionTable tbody tr:nth-child(even){ background:#f4f9fc; }

.commissionNote{
  font-size:15px;
  line-height:1.7;
  color:#111;
}
.commissionNote p{ margin-bottom:8px; }

.commissionBtnWrap{
  display:flex;
  justify-content:center;
  margin-top:28px;
}
.commissionBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 24px;
  border-radius:8px;
  font-size:15px;
  font-weight:600;
  color:#fff;
  background:#015eea;
  border:none;
  cursor:pointer;
  transition: opacity .25s ease, transform .2s ease;
}
.commissionBtn__icon{ width:18px; height:18px; }
.commissionBtn:hover{ opacity:.9; }
.commissionBtn:active{ transform:scale(.97); }

/* ===================== REVEAL ===================== */
.reveal{
  opacity:0;
  transform: translateY(40px);
  transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}
.reveal.is-in{
  opacity:1;
  transform: translateY(0);
}
.reveal.d1{ transition-delay:.05s; }
.reveal.d2{ transition-delay:.18s; }
.reveal.d3{ transition-delay:.31s; }
.reveal.d4{ transition-delay:.44s; }
.reveal.d5{ transition-delay:.57s; }

/* ===================== TELE BOT ===================== */
@keyframes breathe{
  0%{ transform:scale(1); opacity:1; }
  50%{ transform:scale(1.05); opacity:.8; }
  100%{ transform:scale(1); opacity:1; }
}

.tele-bot-div{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:999999;
  pointer-events:none;
}
.tele-bot-div .bot-content{
  pointer-events:auto;
  position:absolute;
  right:0;
  bottom:70px;
  width:350px;
  padding:18px 18px 16px;
  border-radius:12px;
  background:#fff;
  border:1px solid rgba(0,0,0,.10);
  box-shadow:0 10px 20px rgba(0,0,0,.18);
  font-size:15px;
  line-height:1.45;
  font-weight:600;
  color:#111827;
  white-space:normal;
}
.tele-bot-close-text{
  position:absolute;
  right:12px;
  top:5px;
  border:none;
  background:transparent;
  color:#ff0000;
  font-weight:200;
  font-size:13px;
  cursor:pointer;
  padding:0;
}
.tele-bot-close-text:hover{ text-decoration:underline; }

#teleSupportLink{
  color:#015eea;
  font-weight:900;
  text-decoration:none;
  word-break:break-word;
}
#teleSupportLink:hover{ text-decoration:underline; }

.tele-bot-div .bot-img{
  pointer-events:auto;
  display:flex;
  justify-content:flex-end;
}

.telegram-icon.tele-bot{
  width:55px;
  height:55px;
  border-radius:999px;
  background:#015eea;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  cursor:pointer;
  box-shadow:0 14px 28px rgba(0,0,0,.20);
  animation: breathe 3s ease-in-out infinite;
}
.telegram-icon.tele-bot::before{
  content:"";
  position:absolute;
  inset:-10px;
  border-radius:999px;
  background: rgba(14,165,233,.18);
}
.telegram-icon.tele-bot svg{
  width:30px;
  height:30px;
  fill:#fff;
  position:relative;
  z-index:1;
}
.telegram-icon.tele-bot:hover{
  transform:scale(1.06);
  transition: transform .2s ease;
}
@media (max-width:640px){
  .tele-bot-div{ right:12px; bottom:12px; }
  .tele-bot-div .bot-content{ width:280px; bottom:82px; }
  .telegram-icon.tele-bot{ width:58px; height:58px; }
}

/* ===================== CALC MODAL ===================== */
.calcModal{
  --primary: #015eea;
  --overlay: rgba(17, 24, 39, .50);
  --card: #ffffff;
  --text: #0f172a;
  --muted: #6b7280;
  --border: #D7D7D7;
  --soft: #F9FAFB;
  --shadow: 0 25px 50px -12px rgba(0,0,0,.25);
  --shadow-md: 0 12px 28px rgba(0,0,0,.10);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.calcModal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: var(--overlay);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
  overflow-y: auto;
}
.calcModal.is-open{ opacity:1; pointer-events:auto; }

.calcModal__overlay{
  position:absolute;
  inset:0;
  background:transparent;
}

.calcModal__dialog{
  position:relative;
  width:100%;
  max-width:980px;
  max-height:90vh;
  background: var(--card);
  border-radius:22px;
  box-shadow: var(--shadow);
  overflow:hidden;
}

@media (max-width:768px){
  .calcModal{ padding:12px; }
  .calcModal__dialog{ max-width:100%; border-radius:18px; }
}

.calcModal__header{
  position:sticky;
  top:0;
  z-index:60;
  background: var(--primary);
  color:#fff;
  padding:18px 26px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  box-shadow:0 12px 24px rgba(0,0,0,.10);
}
.calcModal__title{ font-size:22px; font-weight:800; letter-spacing:.2px; }
.calcModal__close{
  width:40px;height:40px;
  border-radius:999px;
  border:none;
  background: rgba(255,255,255,.20);
  color:#fff;
  display:grid;
  place-items:center;
  cursor:pointer;
  transition: background .15s ease, transform .15s ease;
  font-size:22px;
  line-height:1;
}
.calcModal__close:hover{ background: rgba(255,255,255,.30); transform: translateY(-1px); }
.calcModal__close:active{ transform: translateY(0); }

.calcModal__body{
  padding:26px 32px;
  overflow-y:auto;
  max-height: calc(90vh - 76px);
  -webkit-overflow-scrolling: touch;
  scrollbar-width:none;
  -ms-overflow-style:none;
}
.calcModal__body::-webkit-scrollbar{ display:none; width:0; }
@media (max-width:768px){ .calcModal__body{ padding:20px 18px; } }

.calcSectionTitle{
  display:flex;
  align-items:center;
  gap:12px;
  color: var(--primary);
  font-weight:800;
  font-size:20px;
  margin:10px 0 18px;
}
.calcSectionTitle.mt{ margin-top:28px; }
.calcSectionTitle .dot{
  width:16px;height:16px;
  border-radius:999px;
  background: var(--primary);
}
.calcSectionTitle .check{
  width:20px;height:20px;
  border-radius:6px;
  background: var(--primary);
  color:#fff;
  display:grid;
  place-items:center;
  font-size:12px;
  font-weight:800;
}

.calcGrid{
  display:grid;
  grid-template-columns:1fr;
  gap:18px 26px;
}
@media (min-width:768px){ .calcGrid{ grid-template-columns:1fr 1fr; } }

.field label{
  display:block;
  font-size:15px;
  font-weight:700;
  color: var(--text);
  margin-bottom:10px;
  line-height:1.35;
}

.field input[type="number"]{
  width:100%;
  padding:12px 12px;
  border-radius:10px;
  border:1px solid var(--border);
  background: var(--soft);
  color:#000;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
  outline:none;
}
.field input[type="number"]:hover{
  background:#fff;
  border-color: rgba(0,173,238,.45);
}
.field input[type="number"]:focus{
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,173,238,.18);
  background:#fff;
}

.field input[type="range"]{
  width:100%;
  margin-top:10px;
  -webkit-appearance:none;
  appearance:none;
  height:8px;
  background: var(--soft);
  border-radius:100px;
  outline:none;
  border:1.07px solid var(--border);
}
.field input[type="range"]::-webkit-slider-thumb{
  -webkit-appearance:none;
  appearance:none;
  width:0;height:0;
  border-radius:100px;
  border:10px solid var(--primary);
  background:transparent;
  cursor:pointer;
}
.field input[type="range"]::-moz-range-thumb{
  width:20px;height:20px;
  border-radius:999px;
  border:6px solid var(--primary);
  background:transparent;
  cursor:pointer;
}

.resultCards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin:10px 0 16px;
}
@media (max-width:860px){ .resultCards{ grid-template-columns:1fr; } }

.rc{
  text-align:center;
  padding:18px 14px;
  border-radius:16px;
  border:1px solid transparent;
  transition: box-shadow .15s ease, transform .15s ease;
}
.rc:hover{ box-shadow: var(--shadow-md); transform: translateY(-1px); }
.rc__dot{
  width:8px;height:8px;
  border-radius:999px;
  margin:0 auto 10px;
}
.rc__label{
  font-size:13px;
  color: var(--muted);
  margin-bottom:6px;
  font-weight:700;
}
.rc__value{
  font-weight:900;
  font-size:18px;
  color: var(--text);
}
.rc--blue{ background:#F0F6FF; border-color:#C2DAFF; }
.rc--blue .rc__dot{ background:#5081F3; }
.rc--green{ background:#F1FDF4; border-color:#A7FFBD; }
.rc--green .rc__dot{ background:#00C72B; }
.rc--purple{ background:#FAF5FF; border-color:#E1C3FF; }
.rc--purple .rc__dot{ background:#A758F5; }

.statusRow{
  background:#F9FAFB;
  border:1px solid #F0F0F0;
  border-radius:18px;
  padding:18px;
  margin-top:10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  transition: box-shadow .15s ease, transform .15s ease;
}
.statusRow:hover{ box-shadow: var(--shadow-md); transform: translateY(-1px); }
.statusTitle{ font-size:15px; color:#565656; font-weight:900; }
.statusHint{ font-size:13px; color: var(--muted); font-weight:700; margin-top:4px; }

.statusBadge{
  padding:8px 16px;
  border-radius:999px;
  font-size:13px;
  font-weight:800;
  line-height:1;
  white-space:nowrap;
  transition: all .2s ease;
  background: var(--primary);
  color:#fff;
}
.statusBadge.success{ background:#DDF3E4 !important; color:#22A35A !important; }
.statusBadge.fail{ background: var(--primary) !important; color:#fff !important; }

/* only these breathe */
.totalBlock{
  background: linear-gradient(90deg, var(--primary), rgb(1 94 234));
  border-radius:22px;
  padding:28px 22px;
  text-align:center;
  color:#fff;
  margin-top:18px;
  transform-origin:center;
  animation: breathe 3s ease-in-out infinite;
}
.totalDot{
  width:12px;height:12px;
  border-radius:999px;
  background:#fff;
  margin:0 auto 12px;
}
.totalLabel{
  font-size:14px;
  font-weight:800;
  opacity:.95;
  margin-bottom:6px;
  letter-spacing:.4px;
}
.totalValue{ font-size:36px; font-weight:1000; }

.detailToggle{
  width:100%;
  max-width:260px;
  margin:18px auto 0;
  border:1px solid #C7C7C7;
  background:#E0E0E0;
  color:#9D9D9D;
  padding:14px 16px;
  border-radius:12px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  transition: box-shadow .15s ease, transform .15s ease;
}
.detailToggle:hover{ box-shadow: var(--shadow-md); transform: translateY(-1px); }

.detailToggle .chev{
  width:12px;height:12px;
  display:inline-block;
  border-right:3px solid #9D9D9D;
  border-bottom:3px solid #9D9D9D;
  transform: rotate(45deg);
  transform-origin:50% 50%;
  transition: transform .18s ease;
  margin-top:-2px;
}
.detailToggle[aria-expanded="true"] .chev{ transform: rotate(-135deg); }

.detailWrap{ margin-top:18px; }
.detailWrap .calcSectionTitle{ font-size:18px; margin:12px 0 16px; }

.detailCard{
  border:1px solid #E5E7EB;
  border-radius:18px;
  background:#fff;
  padding:18px;
  margin-bottom:14px;
  box-shadow:0 10px 26px rgba(0,0,0,.06);
}
.detailCard__title{
  font-size:17px;
  font-weight:700;
  color:#0F172A;
  margin-bottom:12px;
}
.detailCard__line{
  font-size:15px;
  font-weight:600;
  color:#334155;
}

.detailBox{
  border:1px solid #EEF2F7;
  background:#F8FAFC;
  border-radius:16px;
  padding:14px;
}
.detailBox .row2{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:9px 6px;
  font-size:15px;
  font-weight:600;
  color:#334155;
}
.detailBox .row2 span{
  flex:1;
  text-align:left;
  color:#475569;
  font-weight:600;
}
.detailBox .row2 b{
  min-width:160px;
  text-align:right;
  font-weight:700;
  color:#0f172a;
}
.detailBox .row2.red span,
.detailBox .row2.red b{
  color:#EF4444;
  font-weight:700;
}
.detailBox .row2.green{
  margin-top:10px;
  padding-top:12px;
  border-top:1px solid #E5E7EB;
}
.detailBox .row2.green span,
.detailBox .row2.green b{
  color:#16A34A;
  font-weight:800;
}

.detailSub{
  font-size:15px;
  font-weight:600;
  color:#475569;
}
.detailLineGreen{
  font-size:16px;
  font-weight:700;
  color:#16A34A;
  border-top:1px solid #E5E7EB;
  padding-top:10px;
  margin-top:8px;
  margin-bottom:10px;
}

/* tiers */
.tierGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
@media (min-width:768px){
  .tierGrid{ grid-template-columns: 1fr 1fr 1fr; }
}
.tierCard{
  position:relative;
  border-radius:16px;
  border:1px solid #E5E7EB;
  background:#fff;
  padding:12px 14px;
  box-shadow:0 8px 18px rgba(0,0,0,.05);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.tierCard:hover{
  transform: translateY(-1px);
  box-shadow:0 14px 28px rgba(0,0,0,.10);
  border-color: rgba(0,173,238,.45);
}
.tierCard b{ font-size:16px; font-weight:700; color:#0F172A; }
.tierCard div{ font-size:14px; font-weight:500; color:#475569; margin-top:4px; }

.tierBadge{
  position:absolute;
  top:10px;
  right:10px;
  padding:4px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  line-height:1;
}

.tierCard.is-missed{ opacity:.75; }
.tierCard.is-missed .tierBadge{ background:#F3F4F6; color:#6B7280; }

.tierCard.is-achieved{ border-color:#86EFAC; background:#F0FDF4; }
.tierCard.is-achieved .tierBadge{ background:#DCFCE7; color:#16A34A; }

.tierCard.is-current{
  border-color: rgba(0,173,238,.75);
  background: linear-gradient(180deg, rgba(0,173,238,.12) 0%, rgba(0,173,238,.05) 100%);
  box-shadow: 0 16px 38px rgba(0,173,238,.22);
  transform: translateY(-1px);
}
.tierCard.is-current b{ color:#007FB3; font-weight:900; }
.tierCard.is-current div{ color:#0B5E7E; font-weight:600; }
.tierCard.is-current .tierBadge{
  background: var(--primary);
  color:#fff;
  border:1px solid rgba(255,255,255,.35);
}

/* purple blocks + reason */
.purpleGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:14px;
}
@media (max-width:860px){ .purpleGrid{ grid-template-columns:1fr; } }

.purpleCard, .purpleWide{
  border-radius:18px;
  border:1px solid rgba(167, 88, 245, .22);
  background: linear-gradient(180deg, #FCE9FF 0%, #F8ECFF 100%);
  box-shadow: 0 10px 24px rgba(126,50,208,.08);
}
.purpleCard{ padding:16px; }
.purpleWide{ padding:18px; margin-top:14px; }

.purpleCard .k, .purpleWide .k{
  font-size:14px;
  font-weight:600;
  color:#4B5563;
  margin-bottom:8px;
}
.purpleCard .v, .purpleWide .v{
  font-size:20px;
  font-weight:800;
  color:#7E32D0;
}

.reasonBox{
  border-radius:18px;
  border:1px solid rgba(239,68,68,.45);
  background: linear-gradient(180deg, #FFEDED 0%, #FFF5F5 100%);
  box-shadow: 0 10px 24px rgba(239,68,68,.08);
  padding:16px;
  margin-top:14px;
}
.reasonTitle{
  font-size:15px;
  font-weight:700;
  color:#DC2626;
}
#reasonList{
  margin-top:10px;
  font-size:15px;
  font-weight:600;
  color:#991B1B;
}

/* finalBlue breathe (keep) */
.finalBlue{
  border-radius:18px;
  background: linear-gradient(90deg, #015eea 0%, rgb(1 94 234) 100%);
  padding:18px 16px;
  box-shadow: 0 16px 38px rgba(0,173,238,.18);
  border:1px solid rgba(255,255,255,.25);
  text-align:center;
  color:#fff;
  transform-origin:center;
  animation: breathe 3s ease-in-out infinite;
}
.finalBlue .small{ font-size:14px; opacity:.95; font-weight:700; }
.finalBlue .mid{ font-size:20px; font-weight:700; margin-top:6px; }
.finalBlue .big{ font-size:32px; font-weight:900; margin-top:10px; }

body.modal-open{ overflow:hidden; }
.allNotMet{
  margin:10px 0 12px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(239,68,68,.35);
  background: linear-gradient(180deg, #FFEDED 0%, #FFF5F5 100%);
  color:#991B1B;
  font-weight:700;
  font-size:14px;
}

/* ===================== FOOTER ===================== */
.siteFooter{
  padding:24px 0 30px;
  background:#fff;
  border-top:1px solid #E5E7EB;
}

.footerLinks{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  gap:10px;
  text-align:center;
  font-size:14px;
  font-weight:600;
  color:#334155;
}
.footerLinks a{ color:#334155; text-decoration:none; }
.footerLinks a:hover{ color:#015eea; }
.footerLinks .sep{ color:#94A3B8; }

.footerRow{
  margin-top:16px;
  display:flex;
  justify-content:center;
  align-items:center;
}
.footerInner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:70px;
}
.footerBadges{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  justify-content:center;
}
.footerBadges img{ height:30px; width:auto; opacity:.95; }
.footerSocial{
  display:flex;
  align-items:center;
  gap:14px;
  flex-shrink:0;
}
.footerSocial img{ width:38px; height:38px; }

@media (max-width:860px){
  .footerInner{ flex-direction:column; gap:14px; }
}

/* ===================== RESPONSIVE FIXES ===================== */
/* ===================== MOBILE ADAPTATION ===================== */

/* General adjustments for mobile devices */
@media (max-width: 768px) {
  /* Body and overall font-size */
  body {
    font-size: 14px; /* Adjust the font size to make content more readable */
  }

  /* Container adjustments */
  .wrap, .container {
    padding: 0 16px;
  }

  /* Header adjustments */
  .siteHeader {
    height: 63px;
    padding: 10px;
  }

  .siteHeader__inner {
    padding: 0 12px;
  }

  /* Mobile menu button */
  .menuBtn {
    padding: 8px;
  }

  .logoImg {
    width: 120px; /* Logo size adjustment */
    height: auto;
  }

  /* CTA Buttons for mobile */
  .ctaBtn {
    min-width: 200px;
    font-size: 16px;
    padding: 12px 16px;
  }

  /* Marquee section font-size */
  .marqueeItem {
    font-size: 14px; /* Smaller text in the marquee */
  }

  /* Adjustments for images in the Hero section */
  .heroSlide img {
    object-fit: cover; /* Ensure images cover the section well */
  }

  /* Step Section: Stack vertically on mobile */
  .stepsRow {
    flex-direction: column;
    gap: 20px;
  }

  /* Benefit Grid: Change to 2 columns for mobile */
  .benefitGrid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* Table adjustments */
  .commissionTable th, .commissionTable td {
    font-size: 14px;
    padding: 12px 8px;
  }

  /* Footer links font-size */
  .footerLinks {
    font-size: 12px; /* Make footer links smaller on mobile */
  }

  .footerLinks a {
    padding: 0 6px;
  }

  /* Mobile phone specific footer badging */
  .footerBadges img {
    height: 24px; /* Adjust badge size for mobile */
  }

  /* Social icons adjustment */
  .footerSocial img {
    width: 30px;
    height: 30px;
  }

  /* Adjust the modal for mobile */
  .calcModal__dialog {
    max-width: 100%;
    border-radius: 18px;
  }

  /* Adjust the Telegram button for mobile */
  .telegram-icon.tele-bot {
    width: 55px;
    height: 55px;
  }

  .tele-bot-div .bot-content {
    width: 100%;
    max-width: 280px; /* Make the bot content box fit on smaller screens */
  }

  /* Adjust inputs and ranges in the calc modal */
  .calcGrid .field input[type="number"], 
  .calcGrid .field input[type="range"] {
    font-size: 14px;
  }

  .calcModal__body {
    padding: 16px 18px; /* More compact padding for mobile view */
  }
}

/* ===================== SMALL MOBILE FIXES ===================== */
@media (max-width: 480px) {
  /* Adjust the CTA buttons */
  .ctaBtn {
    font-size: 14px;
    min-width: 180px;
  }

  /* Footer Social icons size */
  .footerSocial img {
    width: 28px;
    height: 28px;
  }

  /* Hero image adjustments for very small screens */
  .heroSlide img {
    object-fit: cover;
  }

  /* Step icon and text adjustments for mobile */
  .step__icon img {
    width: 60px;
    height: 60px;
  }

  .step__pill {
    font-size: 12px;
  }

  .step__text {
    font-size: 14px;
  }

  /* Mobile footer badges, slightly adjusted */
  .footerBadges img {
    height: 20px;
  }
}