/* =========================
   SUPER BLOCKS
========================= */

.super-blocks {
  max-width: 1400px;
  margin: 48px auto;
  padding: 0 6%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.super-block {
  border-radius: 24px;
  padding: 72px 64px;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

.super-block.alt {
  background: linear-gradient(135deg, #111827, #1f2937);
}

.super-block h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 18px;
}

.super-block p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .super-blocks {
    grid-template-columns: 1fr;
  }

  .super-block {
    padding: 56px 40px;
  }

  .super-block h3 {
    font-size: 24px;
  }

  .super-block p {
    font-size: 16px;
  }
}
/* =========================
   HOW IT WORKS
========================= */

.how-it-works {
  padding: 96px 0;
  background: #0b0f1e;
  color: #fff;
}

.how-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6%;
}

.how-inner h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 64px;
  font-weight: 600;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.how-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 40px 36px;
}

.step-no {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #a78bfa;
  margin-bottom: 14px;
}

.how-step h3 {
  font-size: 22px;
  margin-bottom: 14px;
  font-weight: 600;
}

.how-step p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
}

/* MOBILE */
@media (max-width: 768px) {
  .how-steps {
    grid-template-columns: 1fr;
  }

  .how-inner h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }
}
/* =========================
   LAST RECORDS
========================= */

.last-records {
  padding: 96px 0;
  background: #f6f7fb;
  color: #111;
}

.records-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 6%;
}

.records-head {
  text-align: center;
  margin-bottom: 48px;
}

.records-head h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 12px;
}

.records-head p {
  font-size: 16px;
  color: #555;
}

.records-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.record-card {
  min-width: 280px;
  background: #fff;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
  position: relative;
  scroll-snap-align: start;
}

.record-time {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 12px;
  color: #666;
}

.record-thumb {
  width: 100%;
  height: 160px;
  border-radius: 16px;
  background: linear-gradient(135deg,#6a11cb,#2575fc);
  margin-bottom: 18px;
}

.record-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
  font-weight: 600;
}

.record-card p {
  font-size: 14px;
  color: #555;
}

/* MOBILE */
@media (max-width: 768px) {
  .records-head h2 {
    font-size: 32px;
  }
}
/* =========================
   WHAT CAN BE REGISTERED
========================= */

.can-register {
  padding: 96px 0;
  background: #ffffff;
  color: #111;
}

.register-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 6%;
}

.register-head {
  text-align: center;
  margin-bottom: 56px;
}

.register-head h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 12px;
}

.register-head p {
  font-size: 16px;
  color: #555;
}

.register-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.register-item {
  padding: 32px 26px;
  border-radius: 22px;
  background: #f6f7fb;
  text-align: center;
}

.register-item span {
  display: block;
  font-size: 36px;
  margin-bottom: 16px;
}

.register-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.register-item p {
  font-size: 14px;
  color: #555;
}

/* MOBILE */
@media (max-width: 768px) {
  .register-grid {
    grid-template-columns: 1fr;
  }

  .register-head h2 {
    font-size: 32px;
  }
}
/* =========================
   REGISTER TO SALE
========================= */

.register-sale {
  padding: 100px 0;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
}

.register-sale-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 6%;
  text-align: center;
}

.register-sale-head {
  margin-bottom: 64px;
}

.register-sale-head h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 12px;
}

.register-sale-head p {
  font-size: 16px;
  opacity: 0.9;
}

.register-sale-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.sale-step {
  background: rgba(255,255,255,0.15);
  padding: 28px 26px;
  border-radius: 22px;
  width: 260px;
}

.sale-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: #6a11cb;
  font-weight: 700;
  margin-bottom: 14px;
}

.sale-step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.sale-step p {
  font-size: 14px;
  opacity: 0.9;
}

.sale-arrow {
  font-size: 32px;
  opacity: 0.7;
}

.register-sale-cta {
  margin-top: 48px;
}

.sale-btn {
  display: inline-block;
  padding: 16px 56px;
  border-radius: 16px;
  background: #ffffff;
  color: #2575fc;
  font-weight: 600;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .register-sale-steps {
    flex-direction: column;
  }

  .sale-arrow {
    display: none;
  }

  .register-sale-head h2 {
    font-size: 32px;
  }
}
/* =========================
   TRUST & TRANSPARENCY
========================= */

.trust {
  padding: 110px 0;
  background: #f6f7fb;
  color: #111827;
}

.trust-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 6%;
}

.trust-head {
  text-align: center;
  margin-bottom: 64px;
}

.trust-head h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 12px;
}

.trust-head p {
  font-size: 16px;
  color: #4b5563;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.trust-item {
  background: #ffffff;
  border-radius: 22px;
  padding: 34px 28px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.06);
}

.trust-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.trust-item p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 1024px) {
  .trust-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .trust-items {
    grid-template-columns: 1fr;
  }

  .trust-head h2 {
    font-size: 32px;
  }
}
/* =========================
   MINI BLOG
========================= */

.blog-mini {
  padding: 110px 0;
  background: #ffffff;
  color: #111827;
}

.blog-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 6%;
}

.blog-head {
  text-align: center;
  margin-bottom: 64px;
}

.blog-head h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 12px;
}

.blog-head p {
  font-size: 16px;
  color: #4b5563;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: #f6f7fb;
  border-radius: 22px;
  padding: 32px 28px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-tag {
  font-size: 12px;
  font-weight: 600;
  color: #2575fc;
  text-transform: uppercase;
}

.blog-card h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.blog-card p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
}

.blog-card a {
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: #2575fc;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-head h2 {
    font-size: 32px;
  }
}
