/* ===== HERO ===== */
.hero {
  position: relative;
  z-index: 1;
  padding: 80px 0 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 70% 60% at 70% 50%,
      rgba(255, 77, 45, 0.09) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 40% at 15% 60%,
      rgba(59, 130, 246, 0.05) 0%,
      transparent 55%
    );
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .hero-right {
    order: -1;
  }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  border-radius: 99px;
  border: 1px solid rgba(255, 77, 45, 0.25);
  background: rgba(255, 77, 45, 0.08);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange2);
  margin-bottom: 20px;
  width: fit-content;
}
@media (max-width: 768px) {
  .hero-tag {
    margin: 0 auto 20px;
  }
}
.tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: tagPulse 2s ease-in-out infinite;
}
@keyframes tagPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.hero-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-accent {
  color: transparent;
  -webkit-text-stroke: 2px var(--orange);
  filter: drop-shadow(0 0 20px var(--orange-glow));
}
.hero-sub {
  font-size: 15px;
  color: var(--text2);
  max-width: 460px;
  margin-bottom: 32px;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .hero-sub {
    margin: 0 auto 32px;
  }
}
.hero-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero-btns {
    justify-content: center;
  }
}

/* HERO CARD */
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 22px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.03);
  animation: cardFloat 5s ease-in-out infinite;
}
@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.hcard-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 14px;
}
.hcard-order {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.hcard-icon {
  font-size: 24px;
  background: var(--surface2);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hcard-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 3px;
}
.hcard-status {
  font-size: 11px;
  color: var(--green);
}
.hcard-price {
  margin-left: auto;
  font-family: "Syne", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--orange);
}
.hcard-bar {
  height: 4px;
  background: var(--surface3);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 8px;
}
.hcard-fill {
  height: 100%;
  width: 72%;
  background: linear-gradient(90deg, var(--orange), var(--orange2));
  border-radius: 99px;
  animation: fillPulse 3s ease-in-out infinite;
}
@keyframes fillPulse {
  0%,
  100% {
    width: 72%;
  }
  50% {
    width: 75%;
  }
}
.hcard-steps {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text3);
}
.hcard-steps .active {
  color: var(--orange);
}

/* FEATURES STRIP */
.features-strip {
  position: relative;
  z-index: 1;
  padding: 0 0 24px;
  border-bottom: 1px solid var(--border);
}
.features-row {
  display: flex;
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  transition: background 0.18s;
}
.feature-item:hover {
  background: var(--surface2);
}
.feature-icon {
  font-size: 20px;
  flex-shrink: 0;
}
.feature-item h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.feature-item p {
  font-size: 11px;
  color: var(--text3);
}
.feature-sep {
  width: 1px;
  background: var(--border);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .features-row {
    flex-direction: column;
  }
  .feature-sep {
    width: auto;
    height: 1px;
  }
}

/* STATS */
.stats-section {
  position: relative;
  z-index: 1;
  padding: 32px 0;
}

/* PRODUCTS */
.products-section {
  position: relative;
  z-index: 1;
  padding: 48px 0;
}

.products-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.filter-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}
.filter-btn {
  padding: 7px 14px;
  border-radius: 99px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text2);
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.18s;
}
.filter-btn:hover {
  color: var(--text);
  border-color: var(--border2);
}
.filter-btn.active {
  background: var(--orange-dim);
  border-color: rgba(255, 77, 45, 0.35);
  color: var(--orange2);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.product-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.03);
}
.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(6, 8, 15, 0.8);
  color: var(--text2);
  padding: 3px 8px;
  border-radius: 4px;
  backdrop-filter: blur(8px);
  border: 1px solid var(--border2);
}

.product-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}
.product-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}
.product-desc {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.5;
  flex: 1;
}
.product-rating {
  font-size: 12px;
  color: var(--text2);
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}
.product-price {
  font-family: "Syne", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--orange);
}

.no-products {
  display: none;
  text-align: center;
  padding: 40px;
  color: var(--text3);
  font-size: 13px;
  font-style: italic;
  grid-column: 1/-1;
}

/* HOW IT WORKS */
.how-section {
  position: relative;
  z-index: 1;
  padding: 64px 0;
}
.how-head {
  margin-bottom: 40px;
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: start;
}
@media (max-width: 640px) {
  .how-grid {
    grid-template-columns: 1fr;
  }
  .how-arrow {
    display: none;
  }
}
.how-arrow {
  color: var(--text3);
  font-size: 24px;
  padding-top: 48px;
  align-self: start;
}
.how-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.how-num {
  font-family: "Syne", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 12px;
}
.how-step h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.how-step p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.65;
}

/* TOAST */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: var(--text);
  color: var(--bg);
  padding: 10px 20px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s;
  transform: translateY(10px);
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
}
