.hp-crypto,
.hp-crypto * {  margin: 0; padding: 0; box-sizing: border-box; }
.hp-crypto input,
.hp-crypto textarea,
.hp-crypto select { font: inherit; }

.hp-crypto {
  background: #0a0e0b;
}
body {
    margin: 0;
    padding: 0;
    background: #0a0e0b;
}
/* ============ HEADER ============ */
.hp-crypto__header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 14, 11, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 217, 75, 0.08);
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hp-crypto__logo {
  font-family: var(--t-headline-font);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.5px;
}
.hp-crypto__logo span {
  color: #00d94b;
}
.hp-crypto__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.hp-crypto__nav a {
  font-family: var(--t-text-font);
  font-size: 14px;
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.hp-crypto__nav a:hover {
  color: #00d94b;
}
.hp-crypto__header-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1px solid #00d94b;
  border-radius: 6px;
  background: transparent;
  color: #00d94b;
  font-family: var(--t-headline-font);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}
.hp-crypto__header-btn:hover {
  background: #00d94b;
  color: #0a0e0b;
}
.hp-crypto__header-btn svg {
  width: 14px;
  height: 14px;
}
.hp-crypto__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
.hp-crypto__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============ HERO ============ */
.hp-crypto__hero {
  min-height: auto;
  padding: 100px 40px 80px;
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
  position: relative;
}
.hp-crypto__hero-content {
  flex: 1;
  min-width: 0;
}
.hp-crypto__hero-eyebrow {
  font-family: var(--t-headline-font);
  font-size: 12px;
  font-weight: 600;
  color: #00d94b;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.hp-crypto__hero-title {
  font-family: var(--t-headline-font);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 28px;
}
.hp-crypto__hero-title span {
  color: #00d94b;
}
.hp-crypto__hero-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #a0a8a3;
  margin-bottom: 36px;
  max-width: 440px;
}
.hp-crypto__hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #00d94b;
  color: #0a0e0b;
  font-family: var(--t-headline-font);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}
.hp-crypto__hero-cta:hover {
  background: #00f058;
  transform: translateY(-1px);
}
.hp-crypto__hero-cta svg {
  width: 16px;
  height: 16px;
}
.hp-crypto__hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: #7a8a7e;
  font-size: 14px;
}
.hp-crypto__hero-note svg {
  width: 16px;
  height: 16px;
  color: #00d94b;
  flex-shrink: 0;
}
.hp-crypto__hero-image {
  flex: 1;
  min-width: 0;
  position: relative;
}
.hp-crypto__hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  max-height: 520px;
  display: block;
}
.hp-crypto__hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(0, 217, 75, 0.15);
  pointer-events: none;
}

/* ============ SECTION TITLES ============ */
.hp-crypto__section {
  padding: 0px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.hp-crypto__section--full {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.hp-crypto__section-title {
  font-family: var(--t-headline-font);
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.hp-crypto__section-line {
  width: 50px;
  height: 3px;
  background: #00d94b;
  margin: 0 auto 50px;
  border-radius: 2px;
}

/* ============ PROGRAM CARDS ============ */
.hp-crypto__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.hp-crypto__card {
  background: rgba(15, 22, 17, 0.8);
  border: 1px solid rgba(0, 217, 75, 0.12);
  border-radius: 12px;
  padding: 36px 24px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.hp-crypto__card:hover {
  border-color: rgba(0, 217, 75, 0.35);
  transform: translateY(-4px);
}
.hp-crypto__card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-crypto__card-icon svg {
  width: 52px;
  height: 52px;
  stroke: #00d94b;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hp-crypto__card-title {
  font-family: var(--t-headline-font);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.hp-crypto__card-desc {
  font-size: 14px;
  color: #7a8a7e;
  line-height: 1.5;
}

/* ============ OUTCOMES ============ */
.hp-crypto__outcomes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.hp-crypto__outcome-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-crypto__outcome-icon svg {
  width: 48px;
  height: 48px;
  stroke: #00d94b;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hp-crypto__outcome-text {
  font-family: var(--t-headline-font);
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}

/* ============ FORMAT SECTION ============ */
.hp-crypto__format {
  padding: 80px 0;
  position: relative;
}
.hp-crypto__format-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.hp-crypto__format-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.hp-crypto__format-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.hp-crypto__format-item-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 217, 75, 0.2);
  border-radius: 8px;
}
.hp-crypto__format-item-icon svg {
  width: 24px;
  height: 24px;
  stroke: #00d94b;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hp-crypto__format-item-title {
  font-family: var(--t-headline-font);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.hp-crypto__format-item-desc {
  font-size: 13px;
  color: #7a8a7e;
  line-height: 1.5;
}
.hp-crypto__phone {
  position: relative;
  width: 240px;
  margin-top: -20px;
}
.hp-crypto__phone-frame {
  width: 240px;
  height: 440px;
  background: #1a1f1c;
  border-radius: 30px;
  border: 2px solid #2a302c;
  padding: 12px;
  position: relative;
  overflow: hidden;
}
.hp-crypto__phone-notch {
  width: 100px;
  height: 24px;
  background: #0a0e0b;
  border-radius: 0 0 16px 16px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hp-crypto__phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #111916 0%, #0d120f 100%);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px 20px;
  position: relative;
}
.hp-crypto__phone-label {
  font-family: var(--t-headline-font);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.hp-crypto__phone-sublabel {
  font-family: var(--t-headline-font);
  font-size: 11px;
  color: #00d94b;
  margin-bottom: 30px;
}
.hp-crypto__phone-tg-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2aabee, #229ed9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.hp-crypto__phone-tg-icon svg {
  width: 36px;
  height: 36px;
  fill: #fff;
}
.hp-crypto__phone-desc {
  font-size: 10px;
  color: #7a8a7e;
  text-align: center;
  line-height: 1.5;
}
.hp-crypto__phone-desc strong {
  color: #fff;
}

/* ============ CTA SECTION ============ */
.hp-crypto__cta {
  position: relative;
  padding: 100px 40px 80px;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0e0b 0%, #0d150f 50%, #0a0e0b 100%);
}
.hp-crypto__cta-bg {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background: url('https://static.tildacdn.ink/tild3433-6664-4139-b637-653433316634/photo-1617994534208-.jpg') center/cover no-repeat;
}
.hp-crypto__cta-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.hp-crypto__cta-images {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  margin-bottom: -30px;
}
.hp-crypto__cta-bull,
.hp-crypto__cta-bear {
  width: 200px;
  height: 200px;
  object-fit: contain;
  position: relative;
  z-index: 2;
}
.hp-crypto__cta-bull {
  transform: translateX(20px);
}
.hp-crypto__cta-bear {
  transform: translateX(-20px);
}
.hp-crypto__cta-quote {
  font-family: var(--t-headline-font);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.hp-crypto__cta-quote span {
  color: #00d94b;
}
.hp-crypto__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: #00d94b;
  color: #0a0e0b;
  font-family: var(--t-headline-font);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  margin-bottom: 20px;
}
.hp-crypto__cta-btn:hover {
  background: #00f058;
  transform: translateY(-2px);
}
.hp-crypto__cta-btn svg {
  width: 16px;
  height: 16px;
}
.hp-crypto__cta-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #7a8a7e;
  font-size: 14px;
}
.hp-crypto__cta-note svg {
  width: 14px;
  height: 14px;
  color: #00d94b;
  flex-shrink: 0;
}

/* ============ FOOTER ============ */
.hp-crypto__footer {
  padding: 40px;
  text-align: center;
  border-top: 1px solid rgba(0, 217, 75, 0.08);
}
.hp-crypto__footer p {
  font-size: 13px;
  color: #4a5a4e;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
  .hp-crypto__hero {
    padding: 120px 40px 60px;
    gap: 40px;
  }
  .hp-crypto__hero-title {
    font-size: 40px;
  }
}

@media (max-width: 960px) {
  .hp-crypto__header {
    padding: 0 24px;
  }
  .hp-crypto__nav {
    display: none;
  }
  .hp-crypto__burger {
    display: flex;
  }
  .hp-crypto__hero {
    flex-direction: column;
    padding: 110px 24px 60px;
    text-align: center;
    gap: 40px;
    min-height: auto;
  }
  .hp-crypto__hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hp-crypto__hero-note {
    justify-content: center;
  }
  .hp-crypto__hero-image img {
    max-height: 400px;
  }
  .hp-crypto__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .hp-crypto__outcomes {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .hp-crypto__format-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 24px;
  }
  .hp-crypto__format-col {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .hp-crypto__phone {
    margin: 0 auto;
    order: -1;
  }
  .hp-crypto__cta-bull,
  .hp-crypto__cta-bear {
    width: 140px;
    height: 140px;
  }
  .hp-crypto__cta-quote {
    font-size: 24px;
  }
  .hp-crypto__section {
    padding: 60px 24px;
  }
}

@media (max-width: 640px) {
  .hp-crypto__hero-title {
    font-size: 30px;
  }
  .hp-crypto__hero-eyebrow {
    font-size: 11px;
  }
  .hp-crypto__cards {
    grid-template-columns: 1fr;
  }
  .hp-crypto__outcomes {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .hp-crypto__section-title {
    font-size: 24px;
  }
  .hp-crypto__cta-bull,
  .hp-crypto__cta-bear {
    width: 110px;
    height: 110px;
  }
  .hp-crypto__cta {
    padding: 60px 24px 50px;
  }
  .hp-crypto__cta-quote {
    font-size: 20px;
  }
  .hp-crypto__format-grid {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .hp-crypto__hero {
    padding: 100px 16px 40px;
  }
  .hp-crypto__hero-title {
    font-size: 26px;
  }
  .hp-crypto__hero-cta {
    padding: 14px 24px;
    font-size: 12px;
    width: 100%;
    justify-content: center;
  }
  .hp-crypto__outcomes {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hp-crypto__cta-btn {
    padding: 14px 28px;
    font-size: 12px;
  }
}

/* ============ MOBILE NAV ============ */
.hp-crypto__mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 11, 0.98);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.hp-crypto__mobile-nav.active {
  display: flex;
}
.hp-crypto__mobile-nav a {
  font-family: var(--t-headline-font);
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.hp-crypto__mobile-nav a:hover {
  color: #00d94b;
}
.hp-crypto__mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}
.hp-crypto__price{
    margin:15px 0 5px;
    text-align:center;
}

.old-price{
    color:#ff3b30;
    text-decoration:line-through;
    font-size:32px;
    font-weight:700;
    margin-right:15px;
    opacity:0.9;
}

.new-price{
    color:#00C853;
    font-size:52px;
    font-weight:800;
}

.hp-crypto__offer{
    text-align:center;
    color:#bdbdbd;
    font-size:14px;
    margin-top:8px;
}
#allrecords a{
    color:#ffffff !important;
}

@media (max-width:480px){

  .hp-crypto__format-item-desc{
      margin-bottom:0 !important;
      text-align:left !important;
  }

  .hp-crypto__format-col{
      flex-direction:column !important;
      gap:20px !important;
  }

  .hp-crypto__format-item{
      justify-content:flex-start !important;
      text-align:left !important;
  }

}@media (max-width:480px){

  .hp-crypto__phone{
      width:180px !important;
  }

  .hp-crypto__phone-frame{
      width:180px !important;
      height:330px !important;
  }

}
@media (max-width:480px){

  .hp-crypto__format-item{
      flex-direction:row !important;
  }

  .hp-crypto__format-item-icon{
      order:-1 !important;
  }

}

@media (max-width:480px){

  .hp-crypto__cards{
      display:grid !important;
      grid-template-columns:1fr 1fr !important;
      gap:12px !important;
  }

  .hp-crypto__card{
      padding:20px 12px !important;
  }

  .hp-crypto__card-icon{
      width:40px !important;
      height:40px !important;
      margin:0 auto 12px !important;
  }

  .hp-crypto__card-icon svg{
      width:32px !important;
      height:32px !important;
  }

  .hp-crypto__card-title{
      font-size:11px !important;
  }

  .hp-crypto__card-desc{
      font-size:11px !important;
      line-height:1.4 !important;
  }

}
/* ============ фон ============ */



.hp-crypto {
  position: relative;
  background: #0a0e0b;
}

.hp-crypto::before{
  content:'';
  position:fixed;
  inset:0;

  background:url('https://i.ibb.co/4nnZvqTK/4585.jpg') center center/cover;

  opacity:0.08;
  filter:blur(1px);

  pointer-events:none;
  z-index:0;
}

.hp-crypto > *{
  position:relative;
  z-index:1;
}

.scroll-top-btn{
    position:fixed !important;

    right:20px;
    bottom:20px;

    width:55px;
    height:55px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#00ff66;

    color:#000 !important;
    text-decoration:none !important;

    font-size:28px;
    font-weight:900;

    border-radius:50%;

    z-index:999999;

    box-shadow:
        0 0 10px #00ff66,
        0 0 25px #00ff66,
        0 0 50px rgba(0,255,102,.6);
} 

@media(max-width:480px){

    .scroll-top-btn{

        width:32px !important;
        height:32px !important;

        font-size:14px !important;

        right:8px !important;
        bottom:8px !important;

        opacity:1.85 !important;

        background:rgba(57,255,20,.7) !important;

        box-shadow:
            0 0 5px rgba(57,255,20,.4) !important;

    }

}

.price-timer-wrap{
    max-width:900px;
    margin:40px auto;
    text-align:center;
}

.price-box{
    margin-bottom:35px;
}


@media(max-width:480px){

    .price-box{
        gap:5px !important;
    }

}

.old-price{
    color:#ff3b30;
    text-decoration:line-through;
    font-size:38px;
    font-weight:700;
    margin-right:15px;
}

.new-price{
    color:#39FF14;
    font-size:130px;
    font-weight:900;
    line-height:1;

    text-shadow:
        0 0 15px rgba(57,255,20,.8),
        0 0 35px rgba(57,255,20,.5);
}


.offer-text{
    color:#cfcfcf;
    font-size:15px;
    margin-top:8px;
}

.timer-box{
    position:relative;

    margin-top:25px;

    display:inline-block;

    padding:25px 40px;

    border-radius:20px;

    border:2px solid rgba(0,255,153,.15);

    background:#07130d;

    overflow:visible;
}

.timer-title{
    color:#ffffff;
    font-size:18px;
    text-transform:uppercase;
    letter-spacing:3px;
    margin-bottom:12px;
    opacity:.8;
}

@media screen and (max-width:480px){

    .timer-title{
        font-size:12px !important;
        letter-spacing:2px !important;
    }
    .timer-box{
        margin-top:0px !important;
    }
@media screen and (max-width:480px){

    .timer-box{
        transform:translateY(-85px);
    }

}
}

#countdown{
    color:#00C853;
    font-size:40px;
    font-weight:400;
    line-height:1;
}

.timer-btn{
    display:inline-block;
    margin-top:25px;
    padding:10px 35px;
    background:#39FF14;
    color:#000;
    text-decoration:none;
    font-size:38px;
    font-weight:800;
    border-radius:12px;
    transition:.3s;
    border: 2px solid #39FF14;

box-shadow:
0 0 0px #39FF14,
0 0 0.5px #39FF14,
0 0 10px #39FF14,
0 0 40px rgba(57,255,20,.8);
}

.timer-btn:hover{
    transform:translateY(-2px);
    box-shadow:
        0 0 10px rgba(0,200,83,.7),
        0 0 25px rgba(0,200,83,.5);
}
.timer-btn{
    color:#000 !important;
    text-decoration:none;
}
@media screen and (max-width:480px){

    .timer-btn{
        width:280px !important;
        font-size:16px !important;
    }

    #countdown{
        font-size:42px !important;
    }

}
@media screen and (max-width:480px){

    .timer-box{
        padding:10px !important;
    }

    #countdown{
        font-size:15px !important;
    }

}
@media (max-width:480px){

  .hp-crypto__outcomes{
      display:grid !important;
      grid-template-columns:1fr 1fr !important;
      gap:15px !important;
  }

  .hp-crypto__outcomes > div{
      width:100% !important;
  }

}
@media (max-width:480px){

  #format{
      margin-top:-200px !important;
  }

}
/* ============ ценна ============ */
.price-box{
display:flex;
align-items:center;
justify-content:center;
gap:20px;
margin:20px auto 30px;
}

.old-price{
color:#ff3b30;
font-size:54px;
font-weight:900;
text-decoration:line-through;
opacity:.9;
}

.new-price-wrap{
position:relative;
display:inline-block;
}

.new-price{
    color:#00ff66;
    font-size:130px;
    font-weight:900;
    line-height:1;

    text-shadow:
        0 0 30px #00ff66,
        0 0 8px #00ff66,
        0 0 0px #00ff66,
        0 0 1px rgba(0,255,102,.8);


text-shadow:
    0 0 15px rgba(0,255,102,.8),
    0 0 35px rgba(0,255,102,.5);


}

.discount-badge{
position:absolute;
    right:-40px;

    transform:translateY(-140px);

width:58px;
height:58px;

border-radius:50%;

background:#000;
border:2px solid #00ff66;

display:flex;
align-items:center;
justify-content:center;

color:#00ff66;
font-size:18px;
font-weight:900;

box-shadow:
    0 0 10px rgba(0,255,102,.8),
    0 0 25px rgba(0,255,102,.5);


}

@media(max-width:480px){


.price-box{
    gap:12px;
}

.old-price{
    font-size:34px;
}

.new-price{
    font-size:84px;
}

.discount-badge{
    width:42px;
    height:42px;
    font-size:13px;

    top:12px;
    right:-32px;
    
      transform:translateY(-25px) !important;
}


}
.old-price-wrap{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.old-label{
    color:#888;
    font-size:9px;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:0px;
    text-transform:uppercase;
}


@media(max-width:480px){

    .price-timer-wrap{
        transform:translateY(-80px);
    }

}
/* ============ ценна ============ */

@media(max-width:480px){

    .hp-crypto__section-title{
        margin-top:-60px !important;
    }

}

.video-frame{
    max-width:900px;
    margin:40px auto;
    padding:10px;

    border:2px solid #00C853;
    border-radius:16px;

    box-shadow:
        0 0 15px rgba(0,200,83,.5),
        0 0 30px rgba(0,200,83,.3);

    background:#051109;
} 
.video-player{

    width:100%;

    aspect-ratio:16/9;

    object-fit:cover;

    display:block;

    border-radius:12px;

}
      
      
      @media(max-width:480px){

    .video-frame{

        margin:20px auto;

        padding: 5px;

        border:1px solid #00C853;

        border-radius:10px;

        box-shadow:
            0 0 8px rgba(0,200,83,.5),
            0 0 15px rgba(0,200,83,.3);
    }

}
@media(max-width:480px){

    .video-player{
        height:220px !important;
    }

}

.vip-btn-text{
    color:#000 !important;
}
/* ================= ПК ================= */

.vip-course-btn{

    display:flex;
    align-items:center;
    justify-content:center;

    width:500px;      /* ширина */
    height:70px;      /* высота */

    font-size:29px;   /* размер текста */
    font-weight:900;

    color:#000 !important;
    text-decoration:none !important;

    background:#39FF14;

    border:2px solid #39FF14;
    border-radius:18px;

    position:relative;

    left:320px;         /* вправо/влево */

    margin-top:130px;  /* сверху */
    margin-bottom:130px; /* снизу */

    box-shadow:
        0 0 10px #39FF14,
        0 0 25px #39FF14,
        0 0 50px rgba(57,255,20,.8),
        0 0 100px rgba(57,255,20,.5);

    transition:.3s;
}

.vip-course-btn:hover{

    transform:translateY(-3px);

    box-shadow:
        0 0 15px #39FF14,
        0 0 35px #39FF14,
        0 0 70px rgba(57,255,20,.9),
        0 0 120px rgba(57,255,20,.6);
}


/* ================= ТЕЛЕФОН ================= */

@media(max-width:480px){

    .vip-course-btn{

        width:300px;      /* ширина */
        height:50px;      /* высота */

        font-size:18px;   /* размер текста */

        left:14px;         /* сдвиг вправо */

        margin-top:20px;
        margin-bottom:20px;

        border-radius:14px;
    }

}

/* ===== НАСТАВНИК ===== */

.mentor-section{
    max-width:1200px;
    margin:80px auto;
    padding:0 20px;
}

.mentor-wrap{
    display:flex;
    gap:40px;
    align-items:center;
}

.mentor-photo{
    flex:0 0 350px;
}

.mentor-photo img{
    width:100%;
    display:block;

    border-radius:20px;

    border:2px solid #00ff66;

    box-shadow:
        0 0 15px rgba(0,255,102,.5),
        0 0 35px rgba(0,255,102,.25);
}

.mentor-info{
    flex:1;
}

.mentor-info h3{
    color:#f0e6e6;
    font-size:42px;
    margin-bottom:20px;
}

.mentor-info p{
    color:#d9d9d9;
    line-height:1.8;
    font-size:17px;
    margin-bottom:15px;
}

.mentor-stats{
    margin-top:30px;

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.mentor-stat{
    background:rgba(5,17,9,.8);

    border:1px solid rgba(0,255,102,.3);

    border-radius:16px;

    padding:20px;

    text-align:center;

    box-shadow:
        0 0 10px rgba(0,255,102,.15);
}

.mentor-stat span{
    display:block;

    color:#00ff66;

    font-size:32px;
    font-weight:900;

    margin-bottom:8px;
}

.mentor-stat small{
    color:#d0d0d0;
    font-size:14px;
}

/* ===== ТЕЛЕФОН ===== */

@media(max-width:480px){

    .mentor-wrap{
        flex-direction:column;
    }

    .mentor-photo{
        width:100%;
    }

    .mentor-info h3{
        font-size:30px;
        text-align:center;
    }

    .mentor-info p{
        font-size:15px;
        text-align:center;
    }

    .mentor-stats{
        grid-template-columns:1fr 1fr;
        gap:12px;
    }

    .mentor-stat{
        padding:15px;
    }

    .mentor-stat span{
        font-size:24px;
    }

}

.reviews-section{
    margin:80px auto;
    overflow:hidden;
}

.reviews-title{
    text-align:center;
    color:#fff;
    font-size:32px;
    font-weight:800;
    text-transform:uppercase;
    margin-bottom:35px;
}

.reviews-slider{
    overflow:hidden;
}

.reviews-track{
    display:flex;
    gap:20px;
    width:max-content;
    animation:reviewsMove 35s linear infinite;
}

.review-card{
    width:300px;
    padding:20px;

    background:rgba(5,17,9,.95);

    border:1px solid rgba(57,255,20,.25);

    border-radius:16px;

    box-shadow:
        0 0 10px rgba(57,255,20,.15);

    flex-shrink:0;
}

.review-stars{
    color:#FFD700;
    font-size:18px;
    margin-bottom:10px;
}

.review-header{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:12px;
}

.review-avatar{
    width:55px;
    height:55px;
    border-radius:50%;
    object-fit:cover;
}

.review-name{
    color:#39FF14;
    font-size:16px;
    font-weight:700;
}

.review-text{
    color:#d0d0d0;
    line-height:1.6;
    font-size:14px;
}

@keyframes reviewsMove{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

@media(max-width:480px){

    .review-card{
        width:240px;
    }

    .reviews-title{
        font-size:24px;
    }

}

.timer{
    position:relative;
    width:140px;
    height:140px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#111;

}

@keyframes shine{

    from{

        transform:translateX(-40%) rotate(0deg);

    }

    to{

        transform:translateX(40%) rotate(360deg);

    }

}
.timer-box::before{

    content:"";

    position:absolute;

    inset:-150%;

    background:linear-gradient(

        120deg,

        transparent 30%,

        rgba(0,255,153,.9) 50%,

        transparent 70%

    );

    animation:shine 4s linear infinite;

}.timer-box{

    position:relative;

    display:inline-block;

    padding:28px 42px;

    border-radius:22px;

    overflow:hidden;

    background:#07130d;

    border:1px solid rgba(255,255,255,.08);

}.timer-box::after{
    content:"";
    position:absolute;
    inset:2px;
    background:#07130d;
    border-radius:18px;
    z-index:2;
}.timer-title{
    position:relative;
    z-index:3;
}
#countdown{
    position: relative;
    z-index: 10;
  
}

#cursor-ring{

    position:fixed;

    width:34px;
    height:34px;

    border:2px solid #00ff99;

    border-radius:50%;

    pointer-events:none;

    z-index:999999;

    box-shadow:
        0 0 12px #00ff99,
        0 0 25px rgba(0,255,153,.4);

    transform:translate(-50%,-50%);

}
.trail{

    position: fixed;

    width: 22px;
    height: 22px;

    pointer-events: none;

    border-radius: 50%;

    transform: translate(-50%,-50%);

    background: radial-gradient(
        circle,
        rgba(0,255,170,.55) 0%,
        rgba(0,255,170,.35) 40%,
        rgba(0,255,170,.25) 70%,
        transparent 100%
    );

    filter: blur(8px);

    opacity: .20;

    z-index:999998;

    animation: trailFade .5s linear forwards;

}

@keyframes trailFade{

    from{

        transform:translate(-50%,-50%) scale(1);

        opacity:.6;

    }

    to{

        transform:translate(-50%,-50%) scale(.2);

        opacity:0;

    }

}

/* ================= Заявка ================= */

/* ===========================
   МОДАЛЬНЕ ВІКНО
=========================== */

.modal{

    position: fixed;

    top: 0;
    left: 0;

    width: 100vw;
    height: 100vh;

    display: flex;

    justify-content: center;
    align-items: center;

    background: rgba(0,0,0,.75);

    backdrop-filter: blur(8px);

    opacity: 0;
    visibility: hidden;

    transition: .3s;

    z-index: 999999;

}

.modal.active{

    opacity: 1;

    visibility: visible;

}

.modal-window{

    position: relative;

    width: min(760px, 92vw);
    min-height: 420px;

    background: #0b0f14;

    border-radius: 20px;

    padding: 40px;

    box-sizing: border-box;

    border: 1px solid rgba(0,255,170,.25);

    box-shadow:
        0 0 30px rgba(0,255,170,.2);

    transform: scale(.9);

    transition: .3s;

}

.modal-window h2{

    color: white;

    text-align: center;

    margin-bottom: 10px;
    

}
.modal-window h3{

    color: white;

    text-align: center;

    margin-bottom: 10px;
    

}

.modal-subtitle{

    color: #9da3ad;

    text-align: center;

    margin-bottom: 30px;

}

.modal-window input{

    width: 93%;
    box-sizing:border-box;

    margin-bottom: 25px;

    padding: 18px 22px;

    border-radius: 12px;

    border: 1px solid rgba(255,255,255,.08);

    background: #151b22;

    color: white;

    font-size: 16px;

    outline: none;

    transition: .3s;

}

.modal-window input:focus{

    border-color: #00ff99;

    box-shadow: 0 0 15px rgba(0,255,153,.25);

}

.contact-list{

    display:flex;

    flex-direction:column;

    gap:12px;

    margin-top:20px;

}

.contact-option{

    display:flex;

    align-items:center;

    gap:18px;

    padding:16px 18px;

    border:1px solid rgba(255,255,255,.08);

    border-radius:14px;

    cursor:pointer;

    transition:.25s;

    color:#fff;

}

.contact-option:hover{

    border-color:#00ff99;

    background:rgba(0,255,153,.05);

}

.contact-option input{

    display:none;

}

.radio{

    width:22px;

    height:22px;

    border-radius:50%;

    border:2px solid #666;

    position:relative;

    flex-shrink:0;

}

.radio::after{

    content:"";

    position:absolute;

    inset:4px;

    border-radius:50%;

    background:#00ff99;

    transform:scale(0);

    transition:.2s;

}

.contact-option input:checked + .radio{

    border-color:#00ff99;

}

.contact-option input:checked + .radio::after{

    transform:scale(1);

}

.contact-name{

    font-size:17px;

}

.submit-btn{

    width: 100%;

    margin-top: 20px;

    padding: 15px;

    border: none;

    border-radius: 12px;

    background: linear-gradient(90deg,#00ff99,#00cc77);

    color: black;

    font-size: 17px;

    font-weight: bold;

    cursor: pointer;

    transition: .25s;

}

.submit-btn:hover{

    transform: translateY(-2px);

    box-shadow: 0 0 20px rgba(0,255,153,.35);

}

.modal-close{

    position: absolute;

    top: 15px;

    right: 15px;

    width: 36px;

    height: 36px;

    border-radius: 50%;

    border: none;

    background: rgba(255,255,255,.08);

    color: white;

    cursor: pointer;

    transition: .25s;

}

.modal-close:hover{

    background: rgba(255,255,255,.18);

}
@media (max-width:900px){

    .modal-window{

        width:min(600px,94vw);

        padding:35px;

    }

    .modal-window h2{

        font-size:38px;

    }

    .modal-subtitle{

        font-size:17px;

    }

    .modal-window input{

        padding:16px 18px;

    }

}
@media (max-width:600px){

    .modal-window{

        width:95vw;

        padding:25px;

    }

    .modal-window h2{

        font-size:30px;

    }

    .modal-subtitle{

        font-size:15px;

        margin-bottom:25px;

    }

    .modal-window input{

        padding:14px 16px;

        font-size:16px;

        margin-bottom:16px;

    }

    .contact-option{

        padding:12px 14px;

        font-size:16px;

        margin-bottom:10px;

    }

    .submit-btn{

        padding:16px;

        font-size:18px;

    }

}

.success-message{

    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

    background:#0b0f14;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    gap:18px;

    border-radius:20px;

    opacity:0;
    visibility:hidden;

    transition:.35s;

    z-index:9999;

    box-sizing:border-box;

}
.success-message.active{

    opacity:1;

    visibility:visible;

}

.success-icon{

    width:90px;

    height:90px;

    border-radius:50%;

    background:#00ff9d;

    color:#08110d;

    font-size:48px;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

    animation:pop .4s ease;

}

.success-message h2{

    color:#fff;

    margin-bottom:12px;

}

.success-message p{

    color:#9da8b5;

    font-size:17px;

}

@keyframes pop{

    0%{

        transform:scale(.4);

        opacity:0;

    }

    100%{

        transform:scale(1);

        opacity:1;

    }

}

.modal{display:flex!important;justify-content:center;align-items:center;z-index:999999!important;}

