/* === CSS RESET & VARIABLES === */
:root {
  --cyan: #00F0FF;
  --cyan2: #00C8D4;
  --dark: #06090C;
  --dark2: #0A1622;
  --card: #0E141D;
  --border: #1B2535;
  --text: #C8D4E0;
  --glow: #00ECFD;
  --dark-bg: #080B10;
  --purple: #8B5CF6;
  --orange: #F97316;
  --amber: #FBBF24;
  --white: #FFFFFF;
  --gray-100: #F1F5F9;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
}


*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark-bg);
  color: var(--text);
  font-family: 'Exo 2', sans-serif;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--cyan), var(--cyan2));
  border-radius: 3px;
}

/* === LAYOUT === */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}


/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: min(100vh, 800px);
  padding-top: 72px;
  background: var(--dark-bg);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 70% 50%, rgba(0, 240, 255, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--dark-bg) 0%, var(--dark) 100%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 240, 255, 0.15);
  pointer-events: none;
}

.hero-corner-tl {
  top: 90px;
  left: 40px;
  border-right: none;
  border-bottom: none;
}

.hero-corner-br {
  bottom: 60px;
  right: 40px;
  border-left: none;
  border-top: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-top {
  top: 100px;
  right: 15%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.12), transparent 60%);
  filter: blur(60px);
}

.hero-glow-bottom {
  bottom: 100px;
  left: 20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08), transparent 60%);
  filter: blur(50px);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

@media (max-width: 1023px) {
  .hero-content {
    flex-direction: column;
  }

  .hero {
    padding-top: 20px;
  }
}

.hero-text {
  flex: 1;
  text-align: left;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 8px 16px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.2);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.hero-badge-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero-heading {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  line-height: 0.85;
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.hero-heading-build {
  display: block;
  font-size: clamp(60px, 10vw, 10px);
  color: var(--cyan);
  letter-spacing: 0.05em;
  text-shadow: 0 0 60px rgba(0, 240, 255, 0.8);
}

.hero-heading-dream {
  display: block;
  font-size: clamp(50px, 8vw, 5px);
  color: var(--white);
  letter-spacing: 0.04em;
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.hero-desc {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-400);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--cyan);
}

.hero-stat-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  margin-top: 4px;
}

.hero-stat-divider {
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 580px;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.15), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

.hero-image-frame {
  position: relative;
  border: 1px solid rgba(0, 240, 255, 0.3);
  background: rgba(198, 208, 209, 0.02);
}

.hero-img {
  width: 560px;
  max-width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.hero-float-badge {
  position: absolute;
  padding: 8px 16px;
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--cyan);
  background: rgba(8, 11, 16, 0.95);
  border: 1px solid rgba(0, 240, 255, 0.4);
  white-space: nowrap;
}

.hero-float-badge-tl {
  left: -30px;
  top: 20%;
}

.hero-float-badge-br {
  right: -30px;
  bottom: 25%;
}

.hero-float-badge-bottom {
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--dark-bg);
  background: var(--cyan);
  border: none;
}

/* === LINE === */
.line-cyan {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.4), transparent);
  margin: 40px 0;
}

/* === TICKER === */
.ticker {
  padding: 14px 0;
  background: rgba(0, 240, 255, 0.04);
  border-top: 1px solid rgba(0, 240, 255, 0.1);
  border-bottom: 1px solid rgba(0, 240, 255, 0.1);
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  animation: ticker 35s linear infinite;
  white-space: nowrap;
}

.ticker-inner:hover {
  animation-play-state: paused;
}

.ticker-item {
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  margin-right: 48px;
}

.ticker-item-cyan {
  color: var(--cyan);
}

.ticker-item-gray {
  color: var(--gray-500);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* === GRID BG === */
.grid-bg {
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* === GLOW / TEXT === */
.text-cyan {
  color: var(--cyan);
}

.text-amber-500 {
  color: var(--amber);
}

.glow {
  text-shadow: 0 0 20px var(--cyan), 0 0 50px rgba(0, 240, 255, 0.4);
}

.text-glow {
  text-shadow: 0 0 30px rgba(0, 240, 255, 0.6);
}

/* === BUTTONS === */
.btn-outline {
  background: rgba(255, 255, 255, 0.975);
  border: 1px solid rgba(0, 0, 0, 0.3);
  color: var(--dark-bg);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
  padding: 14px 28px;
  font-size: 13px;
  border-radius: 4px;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.btn-cyan {
  background: var(--cyan);
  color: var(--dark-bg);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
  padding: 14px 28px;
  font-size: 13px;
  border-radius: 4px;
  border: none;
}

.btn-cyan:hover {
  background: var(--white);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
}

.btn-sm {
  background: var(--cyan);
  color: var(--dark-bg);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 24px;
  font-size: 12px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  border-radius: 6px;
}

.btn-sm:hover {
  background: var(--dark-bg);
  color: var(--cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 36px;
  background: var(--white);
  color: #111;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 255, 255, 0.3);
}

/* === BASE CARD === */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card:hover {
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
}

/* === CORNER ACCENTS === */
.c-tr,
.c-bl {
  position: absolute;
  width: 12px;
  height: 12px;
  transition: all 0.3s;
  z-index: 2;
}

.c-tr {
  top: 0;
  right: 0;
  border-top: 2px solid rgba(0, 240, 255, 0.3);
  border-right: 2px solid rgba(0, 240, 255, 0.3);
}

.c-bl {
  bottom: 0;
  left: 0;
  border-bottom: 2px solid rgba(0, 240, 255, 0.3);
  border-left: 2px solid rgba(0, 240, 255, 0.3);
}

.card:hover .c-tr,
.card:hover .c-bl {
  border-color: var(--cyan);
}

/* === STARS === */
.stars {
  color: var(--amber);
  font-size: 16px;
}

.rating-count {
  color: var(--gray-500);
  font-size: 12px;
  margin-left: 4px;
}

/* === FPS TAG (global) === */
.fps {
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.25);
  color: var(--cyan);
  font-family: 'Orbitron', sans-serif;
  font-size: 9px;
  font-weight: 600;
  padding: 4px 8px;
}

/* === ANIMATIONS === */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.float {
  animation: float 5s ease-in-out infinite;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fi {
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.d1 {
  animation-delay: 0.1s;
}

.d2 {
  animation-delay: 0.2s;
}

.d3 {
  animation-delay: 0.3s;
}

.d4 {
  animation-delay: 0.4s;
}

.d5 {
  animation-delay: 0.5s;
}

/* === PREBUILT SECTION === */
.prebuilt-section {
  padding: 80px 0;
  background: var(--dark-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.section-label-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan));
}

.section-label-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--cyan);
  text-transform: uppercase;
}

.section-title-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.section-subtitle {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  color: var(--gray-500);
}

/* === PRODUCT GRID === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =============================================
   PRODUCT CARD — image-on-bg layout
   Image fills the top area, content sits below
   on a white card background like the screenshot
   ============================================= */
.product-card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  background: var(--white);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
  box-shadow: 0 8px 40px rgba(0, 240, 255, 0.15);
  transform: translateY(-5px);
}

.product-card-featured {
  box-shadow: 0 4px 30px rgba(0, 240, 255, 0.12);
}

/* Image area — full-bleed colored background with img on top */
.product-img-wrap {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  flex-shrink: 0;
  /* Default bg — override per card below */
  background: linear-gradient(145deg, #000000, #000000);
}

/* Per-card background colors to differentiate */
.product-grid .product-card:nth-child(1) .product-img-wrap {
  background: linear-gradient(145deg, #000000, #000000);
}

.product-grid .product-card:nth-child(2) .product-img-wrap {
  background: linear-gradient(145deg, #000000, #000000);
}

.product-grid .product-card:nth-child(3) .product-img-wrap {
  background: linear-gradient(145deg, #000000, #000000);
}

/* The actual product image — covers the bg area */
.prod-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.product-card:hover .prod-img {
  transform: scale(1.05);
}

/* Hide the old overlay FPS badges (we move them to content below) */
.product-img-overlay {
  display: none;
}

/* Bestseller badge stays on image */
.bestseller-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--cyan), #8df7ff);
  color: var(--dark-bg);
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  box-shadow: 0 4px 16px rgba(0, 240, 255, 0.3);
}

.bestseller-badge::before {
  content: "Best Seller";
}

/* === PRODUCT CONTENT (white area below image) === */
.product-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px 18px 18px;
  background: var(--white);
}

.product-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.product-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #111;
}

.product-id {
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  color: var(--gray-500);
}

.product-desc {
  color: #555;
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Rating row — stars + FPS tags side by side */
.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.product-rating .fps {
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 4px;
  color: var(--cyan);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.3);
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Bottom row: price + shop button */
.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.price {
  font-family: 'Orbitron', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #111;
  line-height: 1;
}

.price-symbol {
  font-size: 14px;
  color: #555;
  margin-left: 2px;
  font-weight: 600;
}

/* ================= PROMO ================= */
.promo-banner {
  padding: 80px 0;
}

.promo-card {
  position: relative;
  background: linear-gradient(135deg, #0A1A28, #081420);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 240, 255, 0.15);
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.08);
  margin-bottom: 60px;
}

.promo-card::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.15), transparent);
  top: -80px;
  right: -80px;
  filter: blur(50px);
}

.promo-content-wrap {
  display: flex;
  flex-direction: column;
  height: 400px;
}

@media (min-width: 768px) {
  .promo-content-wrap {
    flex-direction: row;
    align-items: center;
  }
}

.promo-img-wrap {
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .promo-img-wrap {
    width: 45%;
  }
}

.promo-img {
  width: auto;
  height: 260px;
  object-fit: cover;
  transition: 0.4s;
  margin-left: 38px;
}

.promo-card:hover .promo-img {
  transform: scale(1.05);
}

.promo-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 35%, #081420 100%);
}

.promo-content {
  padding: 40px;
  flex: 1;
}

.promo-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #000;
  background: var(--cyan);
  padding: 6px 14px;
  margin-bottom: 12px;
  border-radius: 4px;
}

.promo-heading {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.promo-heading-cyan {
  color: var(--cyan);
}

.promo-desc {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 18px;
}

.promo-tags {
  display: flex;
  gap: 12px;
}

.promo-card:hover {
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: 0 0 60px rgba(0, 240, 255, 0.15);
}

/* === PROMO HERO === */
.promo-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media (min-width: 1024px) {
  .promo-hero-content {
    flex-direction: row;
    justify-content: center;
    gap: 80px;
  }
}

.promo-hero-text {
  max-width: 450px;
}

.promo-hero-text span {
  color: var(--cyan);
  letter-spacing: 2px;
  font-size: 13px;
}

.promo-hero-text h1 {
  font-size: 42px;
  margin: 12px 0;
}

.promo-hero-text p {
  opacity: 0.8;
}

.promo-hero-img {
  position: relative;
}

.promo-hero-img::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.2), transparent);
  top: 20px;
  right: 20px;
  filter: blur(60px);
}

.promo-hero-img img {
  width: 420px;
  max-width: 100%;
  animation: float 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

/* ================= FEATURE BUILD ================= */

.feature-build {
  padding: 80px 0;
  /* ❌ remove 0 80px */
  background: var(--dark-bg);
}

/* HEADER */
.feature-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.feature-header span {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  color: var(--white);
  letter-spacing: 0.12em;
}

.feature-header .line {
  width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

/* MAIN BOX */
.feature-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #0b1220, #1a2332);
  border: 1px solid rgba(0, 240, 255, 0.15);
  padding: 50px 60px;
  gap: 50px;
  border-radius: 8px;
}

/* IMAGE */
.feature-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.feature-image-inner {
  width: 100%;
  max-width: 520px;
  height: 300px;
  transform: rotate(6deg);
  /* smoother */
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.feature-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: rotate(-8deg) scale(1.05);
}

/* TEXT */
.feature-content {
  flex: 1;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-tag {
  color: var(--cyan);
  font-size: 12px;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}

.feature-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 30px;
  color: var(--cyan);
  line-height: 1.3;
  margin-bottom: 10px;/
}

.feature-title span {
  font-size: 15px;
  color: var(--white);
  letter-spacing: 0.08em;
}

.feature-desc {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-actions {
  display: flex;
  justify-content: flex-end;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .feature-box {
    flex-direction: column;
    padding: 30px;
  }

  .feature-image-inner {
    transform: rotate(-4deg);
    height: 250px;
  }

  .feature-actions {
    justify-content: flex-start;
  }
}

/* ITEM */
.alt-item {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
}

/* IMAGE */
.alt-img {
  width: 320px;
  height: 320px;
  z-index: 2;
}

.alt-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT BASE */
.alt-content {
  flex: 1;
  background: #000;
  padding: 40px 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: -0px;
}

/* NORMAL TEXT */
.alt-desc {
  color: var(--gray-400);
  font-size: 14px;
  line-height: 1.7;
  max-width: 60%;
}

/* NORMAL META (RIGHT SIDE) */
.alt-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

/* 🔥 REVERSE LAYOUT (ITEM 2 ONLY) */
.alt-item.reverse {
  flex-direction: row-reverse;
}

.alt-item.reverse .alt-content {
  margin-left: 0;
  margin-right: -60px;
}

/* SPLIT MODE (ITEM 2 ONLY) */
.alt-content.split {
  justify-content: flex-start;
  gap: 40px;
}

/* LEFT COLUMN (ITEM 2) */
.alt-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 120px;
}

/* PRICE */
.alt-price {
  font-family: 'Orbitron', sans-serif;
  font-size: 32px;
  color: var(--cyan);
  font-weight: 800;
  display: flex;
  gap: 10px;
}

.alt-price span {
  font-size: 14px;
  color: #3b82f6;
}

/* BUTTON */
.alt-btn {
  background: #e5e5e5;
  border: none;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 13px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
}

.alt-btn:hover {
  background: var(--cyan);
  color: var(--dark-bg);
}

/* === AWARDS SECTION === */
.awards-section {
  padding: 80px 0;
  background: var(--dark-bg);
}

.award-card {
  background: var(--card);
  border-radius: 4px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
}

.award-card:hover {
  border-color: rgba(0, 240, 255, 0.3);
}

.award-card-featured {
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
}

.award-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.award-icon-1 {
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.3);
}

.award-icon-2 {
  background: rgba(0, 240, 255, 0.12);
  border: 1px solid rgba(0, 240, 255, 0.5);
}

.award-icon {
  width: 24px;
  height: 24px;
  color: var(--cyan);
}

.award-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  color: var(--white);
  font-size: 14px;
  margin-bottom: 8px;
}

.award-title-cyan {
  color: var(--cyan);
}

.award-desc {
  font-family: 'Rajdhani', sans-serif;
  color: var(--gray-500);
  font-size: 12px;
  line-height: 1.5;
}

/* === ABOUT SECTION === */
.about-section {
  padding: 80px 0;
  background: var(--dark);
}

.section-header-center {
  text-align: center;
}

.section-label-simple {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.section-label-line-sm {
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan));
}

.about-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-400);
  margin-top: 24px;
  text-align: left;
}

.about-text p {
  margin-bottom: 16px;
}

.brand-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.brand-logo {
  opacity: 0.4;
  transition: all 0.3s;
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--white);
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-logo:hover {
  opacity: 1;
  color: var(--cyan);
  border-color: rgba(0, 240, 255, 0.3);
}


/* === MEDIA QUERIES === */

/* Tablet: 3-col → 2-col, hero stacks, alt-products simplify */
@media (max-width: 1023px) {
  .container {
    padding: 0 24px;
  }

  .hero-content {
    padding: 48px 24px 64px;
    gap: 32px;
  }

  .hero-image {
    max-width: 100%;
  }

  .hero-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    aspect-ratio: 56 / 50;
    object-fit: cover;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-box {
    padding: 36px 32px;
    gap: 32px;
  }

  .alt-content {
    padding: 28px 36px;
  }
}

/* Mobile: hero/layout adjustments — product grid stays 2-col down to 480px */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .hero-content {
    padding: 32px 16px 56px;
    gap: 24px;
  }

  .hero-float-badge-tl,
  .hero-float-badge-br {
    display: none;
  }

  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  .hero-stat-num {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons button {
    width: 100%;
  }

  .hero-image {
    width: 100%;
    max-width: 100%;
  }

  .hero-img {
    width: 100%;
    height: auto;
  }

  .promo-hero-img img {
    width: 100%;
  }

  /* 2 columns, shorter image to match narrower cards */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .product-img-wrap {
    height: 180px;
  }

  /* Section vertical spacing reduced on mobile */
  .prebuilt-section,
  .promo-banner,
  .feature-build,
  .awards-section,
  .about-section {
    padding: 48px 0;
  }

  .promo-content-wrap {
    height: auto;
  }

  .promo-img {
    height: 200px;
    margin-left: 0;
    width: 100%;
    object-fit: cover;
  }

  .promo-content {
    padding: 24px;
  }

  .promo-heading {
    font-size: 20px;
  }

  /* Feature/keyboard section stacks vertically */
  .feature-box {
    flex-direction: column;
  }

  .feature-image-inner {
    transform: none;
    width: 100%;
    max-width: 100%;
    height: 220px;
  }

  .feature-image-inner img {
    transform: none;
  }

  .feature-header .line {
    width: 60px;
  }

  .alt-item,
  .alt-item.reverse {
    flex-direction: column;
    margin-bottom: 48px;
  }

  .alt-img {
    width: 100%;
    height: 240px;
  }

  .alt-content,
  .alt-item.reverse .alt-content {
    margin: 0;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .alt-content.split {
    flex-direction: column;
    gap: 16px;
  }

  .alt-desc {
    max-width: 100%;
  }

  .alt-meta {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .ticker-item {
    font-size: 10px;
    margin-right: 32px;
  }

  .section-title-text {
    font-size: 24px;
  }

  .promo-hero-text h1 {
    font-size: 28px;
  }
}

/* Small mobile: 1 column, type tightening */
@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product-img-wrap {
    height: 200px;
  }

  .prod-img {
    object-fit: contain;
  }

  .hero-stats {
    justify-content: center;
    flex-direction: row;
    gap: 14px;
    align-items: center;
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-float-badge-bottom {
    font-size: 10px;
    padding: 8px 14px;
  }

  .feature-box {
    padding: 24px 20px;
  }

  .feature-title {
    font-size: 22px;
  }

  .brand-logos {
    gap: 16px;
  }

  .brand-logo {
    font-size: 10px;
    padding: 6px 12px;
  }
}