/* main.css — base styles for the landing (no external frameworks) */

:root {
  --color-primary: #bec054;
  /* yellow accent */
  --color-red: #FF494B;
  --color-light: #ffffff;
  --color-dark: #1F1F1F;
  --color-gray: #3B3B3B;
  --bg-dark: #06050E;
  --container: 1080px;
}

/* Typography */
html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Sofia Sans Extra Condensed", sans-serif;
  line-height: 1.2;
  color: var(--color-dark);
  background: var(--bg-dark);
}

.title {
  font-family: "Sofia Sans Extra Condensed", system-ui, sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  line-height: .95;
  color: var(--color-light)
}

.fw-bold {
  font-weight: 700
}

.color-primary {
  color: var(--color-primary)
}

.color-light {
  color: var(--color-light)
}

.grad-txt {
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .25) 45%, rgba(255, 255, 255, 0) 100%), #1E1E1E;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.grad-txt.red {
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .2) 45%, rgba(255, 255, 255, 0) 100%), var(--color-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

/* Layout helpers */
.container {
  max-width: var(--container);
  padding: 0 16px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px
}

[class^="col-"],
[class*=" col-"] {
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box
}

.col-12 {
  width: 100%
}

.col-6 {
  width: 50%
}

.text-center {
  text-align: center
}

.align-center {
  align-items: center
}

.center-md {
  align-items: flex-end
}

/* Responsive columns */
@media (min-width:768px) {
  .col-md-5 {
    width: 41.6667%
  }

  .col-md-6 {
    width: 50%
  }

  .col-md-7 {
    width: 58.3333%
  }

  .d-md-block {
    display: block !important
  }

  .d-md-inline {
    display: inline !important
  }

  .d-md-none {
    display: none !important
  }
}

@media (max-width:767px) {
  .d-none {
    display: none !important
  }
}

/* Buttons */
.cl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #000;
  background: linear-gradient(96deg, #F6FF46 -0.4%, #FFFB8B 49%, #FBFF2D 113%);
  padding: 14px 20px;
  min-height: 60px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: -.02em
}

.cl-btn:hover {
  transform: scale(1.03)
}

.dark-btn {
  color: #fff;
  background: linear-gradient(270deg, rgba(217, 217, 217, .2) 0, rgba(255, 255, 255, .2) 45%, rgba(217, 217, 217, .2) 100%), #000
}

/* Header */
.header {
  position: relative;
  color: var(--color-light);
  padding: 24px 0 40px;
  background: linear-gradient(180deg, #06050E 0, #2E2E33 100%)
}

.header .info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: #fff;
  color: #000;
  border-radius: 12px;
  padding: 16px
}

.header .info .tit {
  font-weight: 800;
  color: var(--color-primary)
}

.header .date {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #fff;
  padding: 8px 12px;
  border-radius: 12px;
  max-width: 520px;
  margin-left: auto
}

.header .date .icon {
  width: 36px;
  height: 36px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center
}

.header .content-main {
  margin-top: 24px
}

.header .blocks .block {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  margin: 8px 0
}

.header .blocks .icon {
  width: 28px;
  height: 28px;
  background: #1d1d1d;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center
}

/* Form block */
.form-block {
  background: rgba(50, 50, 50, .9);
  border: 1px solid rgba(255, 255, 255, .15);
  color: #fff;
  border-radius: 16px;
  padding: 18px
}

.form .inputblock {
  margin-bottom: 10px
}

.form input {
  width: 100%;
  height: 56px;
  border-radius: 8px;
  border: 1px solid #C6C6C6;
  padding: 0 14px;
  font-size: 16px;
  box-sizing: border-box
}

.form input:focus {
  outline: none;
  border-color: var(--color-primary)
}

.video-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0 10px
}

.video-frame {
  width: 140px;
  height: 95px;
  border-radius: 8px;
  background: linear-gradient(174deg, #0b0f14 53%, #101a27 88%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, .25);
  position: relative
}

.video-frame.big {
  width: 320px;
  height: 210px;
  transform: rotate(6deg);
  margin: 30px auto 0
}

/* Progress */
.load-progress {
  margin-top: 12px
}

.progress-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #a2a2a2;
  font-size: 14px
}

.progress {
  height: 8px;
  background: #202020;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1)
}

.progress-bar {
  height: 100%;
  background: var(--color-primary);
  width: 0
}

/* Will section */
.will {
  padding: 60px 0 20px;
  background: #0a0a0a;
  color: #fff
}

.will .for-title .txt {
  opacity: .8;
  margin-bottom: 10px
}

.for-title {
  position: relative;
}

.ok-list p {
  position: relative;
  padding-left: 48px;
  margin: 14px 0
}

.ok-list p::before {
  content: attr(data-number);
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--color-primary);
  color: #000;
  font-weight: 800
}

/* Bonuses */
.bonuses {
  padding: 70px 0;
  background: linear-gradient(297deg, rgba(255, 255, 255, .16) 0, rgba(255, 255, 255, 0) 100%), #000;
  color: #fff
}

.bonuses .sub-title {
  opacity: .8;
  margin: 10px 0 18px
}

.bonuses .blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center
}

.bonuses .block {
  background: #fff;
  color: #000;
  border: 1px solid #b4b4b4;
  border-radius: 16px;
  padding: 58px 12px 14px;
  width: 200px;
  text-align: center;
  position: relative
}

.bonuses .bonus-pic {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -36%);
  width: 110px;
  height: 110px;
  border-radius: 16px;
  background: linear-gradient(174deg, #0b0f14 53%, #101a27 88%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, .25);
  border: 1px solid #fff
}

.bonuses .instruction {
  color: #888;
  margin: 6px 0
}

/* Reviews */
.reviews {
  padding: 60px 0 80px;
  background: url("../assets/images/web-bg.webp") no-repeat center/cover, #0b0b0b
}

.reviews .title {
  color: #fff
}

.reviews .blocks .rv-block {
  background: #fff;
  border-radius: 10px;
  padding: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  height: 100%
}

.reviews .rv-block .photo {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: linear-gradient(174deg, #0b0f14 53%, #101a27 88%)
}

.reviews .rv-block .name {
  font-weight: 700
}

.reviews .rv-block .rate-info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px
}

.reviews .rv-block .star {
  color: #f5b400
}

/* Registration */
.registration {
  padding: 60px 0;
  background: linear-gradient(297deg, rgba(255, 255, 255, 0) 36%, rgba(255, 255, 255, .18) 102%, rgba(255, 255, 255, 0) 149%), #000;
  color: #fff;
  text-align: center
}

.registration .form-block {
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .2) 45%, rgba(255, 255, 255, 0) 100%), #202020
}

/* Footer */
.footer {
  padding: 28px 0;
  text-align: center;
  color: #cfcfcf;
  background: #0b0b0b
}

.footer a {
  color: inherit;
  text-decoration: none
}

.footer a:hover {
  opacity: .85
}

.footer .links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 18px 0
}

.footer .icon-link {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center
}

/* Utilities */
.text-center {
  text-align: center
}

/* Simple responsive tweaks */
@media (max-width:991px) {
  .video-frame.big {
    width: 260px;
    height: 172px
  }
}

@media (max-width:767px) {
  .col-6 {
    width: 100%
  }

  .header .info {
    grid-template-columns: 1fr
  }

  .bonuses .block {
    width: 100%;
    display: flex;
    gap: 12px;
    align-items: center;
    text-align: left;
    padding: 12px
  }

  .bonuses .bonus-pic {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 84px;
    height: 84px;
    flex-shrink: 0
  }
}