.hero{
  position:relative;
  min-height: calc(100vh - 74px);
  display:flex;
  align-items:center;
  overflow:hidden;
}

.hero::before{
  content:'';
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.3);
  z-index:1;
}

.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
  opacity:0;
  transition: opacity .15s ease;
}

.hero-video-1{
  opacity:1;
}

.hero-bg{ display:none; } /* quitamos blobs/grid */

.blob{
  position:absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(28px);
  opacity:.35;
}
.blob.b1{ left:-140px; top:-120px; background: radial-gradient(circle at 30% 30%, var(--cyan), transparent 60%); }
.blob.b2{ right:-160px; bottom:-160px; background: radial-gradient(circle at 30% 30%, var(--pink), transparent 60%); }

.grid-noise{
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(55% 60% at 50% 30%, #000 65%, transparent 100%);
  opacity:.18;
}

.hero-inner{
  position:relative;
  z-index:2;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-direction:column;
  text-align:center;
  padding: 42px 0;
  min-height:calc(100vh - 74px);
}

.hero-center{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:18px;
}

.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding: 8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
  font-size:13px;
}
.pill .dot{
  width:10px; height:10px; border-radius:999px;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(96,255,136,.12);
}

.hero h1{
  margin: 0;
  font-size: clamp(34px, 4.2vw, 62px);
  line-height:1.03;
  letter-spacing:-1px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.grad{
  background: linear-gradient(90deg, var(--cyan), var(--lime));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.grad2{
  background: linear-gradient(90deg, var(--yellow), var(--pink));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.hero p{
  margin: 0;
  color: rgba(255,255,255,.78);
  max-width: 52ch;
  font-weight: 300;
}

.hero-cta{ display:flex; gap:10px; flex-wrap:wrap; }

.hero-stats{
  margin-top: 18px;
  display:flex;
  gap: 14px;
  flex-wrap:wrap;
}
.stat{
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
}
.stat strong{ display:block; font-size:16px; }
.stat span{ color: rgba(255,255,255,.72); font-size:12px; }

/* right stack */
.stack{ display:grid; gap: 12px; }
.card.visual{
  position:relative;
  border-radius: var(--radius2);
  padding: 18px;
  border:1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(700px 220px at 20% 20%, rgba(255,208,0,.18), transparent 60%),
    radial-gradient(700px 220px at 80% 20%, rgba(50,214,255,.14), transparent 60%),
    rgba(255,255,255,.05);
  overflow:hidden;
  transform: translateZ(0);
  transition: transform .18s ease, border-color .18s ease;
}
.card.visual:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.24);
}
.card.visual h3{ margin: 10px 0 4px; }
.card.visual p{ margin:0; color: rgba(255,255,255,.74); font-size:13px; }
.tag{
  display:inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight:700;
  letter-spacing:.4px;
  color:#111;
}
.tag.marvel{ background: linear-gradient(90deg, var(--yellow), #ff4b2b); }
.tag.anime{ background: linear-gradient(90deg, var(--pink), var(--cyan)); color:#0b0b1a;}
.tag.series{ background: linear-gradient(90deg, var(--lime), var(--cyan)); }

.shine{
  position:absolute; inset:-40%;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,.16) 50%, transparent 60%);
  transform: translateX(-30%) rotate(12deg);
  opacity:0;
  transition: opacity .18s ease, transform .38s ease;
}
.card.visual:hover .shine{
  opacity:1;
  transform: translateX(20%) rotate(12deg);
}

.scroll-hint{
  position:absolute;
  left:50%;
  bottom: 18px;
  transform: translateX(-50%);
  display:flex;
  align-items:center;
  gap:8px;
  color: rgba(255,255,255,.68);
  font-size:13px;
}

.hero-collections{
  display:flex;
  justify-content:center;
  gap:24px;
  flex-wrap:nowrap;
  margin-top:36px;
  width:100%;
}

.collection-card{
  flex: 1;
  min-width: 0;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  text-decoration:none;
  transition: transform .18s ease;
}

.collection-card:hover{
  transform: translateY(-4px);
}

.collection-card img{
  width:100%;
  height:450px;
  object-fit:cover;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
}

.collection-card span{
  color: rgba(255,255,255,.86);
  font-weight:500;
  font-size:14px;
}

@media (max-width: 768px) {
  .hero-collections {
    flex-direction: column;
    gap: 20px;
  }

  .collection-card {
    width: 100%;
  }

  .collection-card img {
    height: 300px;
  }
}

/* FULLSCREEN SECTIONS */
.fs{
  min-height: 100vh;
  display:flex;
  align-items:center;
  padding: 72px 0;
}
.fs.alt{
  background: radial-gradient(1200px 600px at 50% 0%, rgba(50,214,255,.10), transparent 60%);
}
.fs-inner{ width:100%; }
.fs-head h2{
  margin:0 0 8px;
  font-size: clamp(26px, 2.6vw, 44px);
}
.fs-head p{ margin:0 0 18px; color: rgba(255,255,255,.72); }

.fs-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.tile{
  grid-column: span 6;
  min-height: 220px;
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  padding: 18px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  transition: transform .18s ease, border-color .18s ease;
}
.tile:hover{ transform: translateY(-2px); border-color: rgba(255,255,255,.24); }
.tile-title{ font-weight:700; font-size:22px; }
.tile-sub{ color: rgba(255,255,255,.72); font-size:13px; margin-top:4px; }

.t1{ background: radial-gradient(700px 220px at 20% 20%, rgba(255,208,0,.18), transparent 60%), rgba(255,255,255,.06); }
.t2{ background: radial-gradient(700px 220px at 20% 20%, rgba(255,79,216,.18), transparent 60%), rgba(255,255,255,.06); }
.t3{ background: radial-gradient(700px 220px at 20% 20%, rgba(96,255,136,.16), transparent 60%), rgba(255,255,255,.06); }
.t4{ background: radial-gradient(700px 220px at 20% 20%, rgba(124,58,237,.16), transparent 60%), rgba(255,255,255,.06); }

.two{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items:center;
}

.steps{ margin: 16px 0; display:grid; gap:10px; }
.step{
  padding: 12px 14px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.82);
}
.step span{
  display:inline-flex;
  width:34px; height:34px;
  border-radius:12px;
  background: rgba(255,255,255,.10);
  align-items:center; justify-content:center;
  font-weight:600;
  margin-right: 10px;
}

.preview-mock{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  padding: 14px;
}
.mock-top{ display:flex; gap:8px; flex-wrap:wrap; }
.chip{
  padding: 7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.14);
  font-size:12px;
}
.mock-body{
  margin-top: 14px;
  display:grid;
  grid-template-columns: 1fr .8fr;
  gap:12px;
  align-items:center;
}
.mock-shirt{
  height: 280px;
  border-radius: 18px;
  border:1px dashed rgba(255,255,255,.25);
  background:
    radial-gradient(420px 160px at 50% 30%, rgba(255,79,216,.16), transparent 60%),
    radial-gradient(420px 160px at 50% 70%, rgba(50,214,255,.12), transparent 60%),
    rgba(0,0,0,.12);
}
.mock-controls{ display:grid; gap:10px; }
.ctrl{
  height: 46px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.12);
}

.faq{
  max-width: 820px;
  display:grid;
  gap: 10px;
}
details{
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  padding: 12px 14px;
}
summary{
  cursor:pointer;
  font-weight:800;
}
details p{
  color: rgba(255,255,255,.74);
  margin: 10px 0 0;
}

.footer-mini{
  margin-top: 24px;
  display:flex;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
  color: rgba(255,255,255,.70);
  font-size:13px;
}

/* PROMO SECTIONS */
.promo-section{
  padding: 60px 0;
  background: transparent;
}

.promo-sections{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.promo-card{
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  position: relative;
}

.promo-1{
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.promo-2{
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.promo-content{
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  z-index: 2;
}

.promo-tag{
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  width: fit-content;
}

.promo-content h3{
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.promo-content p{
  margin: 0;
  color: rgba(255,255,255,.8);
  font-weight: 300;
  font-size: 15px;
}

.promo-price{
  font-weight: 500;
  font-size: 16px !important;
}

.btn-promo{
  align-self: flex-start;
  padding: 12px 28px;
  background: #fff;
  color: #333;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
  display: inline-block;
}

.btn-promo:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.promo-image{
  position: absolute;
  right: 0;
  top: 0;
  width: 45%;
  height: 100%;
  overflow: hidden;
}

.promo-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

/* PROMO RESPONSIVE */
@media (max-width: 900px) {
  .promo-sections {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .promo-card {
    min-height: 280px;
  }
  
  .promo-content {
    padding: 32px;
  }
  
  .promo-content h3 {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  .promo-section {
    padding: 40px 0;
  }
  
  .promo-card {
    flex-direction: column;
    min-height: auto;
  }
  
  .promo-content {
    padding: 28px 24px;
    gap: 12px;
  }
  
  .promo-content h3 {
    font-size: 24px;
  }
  
  .promo-content p {
    font-size: 14px;
  }
  
  .promo-image {
    position: relative;
    width: 100%;
    height: 180px;
    order: -1;
  }
  
  .btn-promo {
    padding: 10px 24px;
    font-size: 13px;
  }
}

/* BRANDS SCROLL */
.brands-section{
  padding: 60px 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #fff;
}

.brands-section h2{
  margin: 0 0 48px;
  text-align: center;
  font-size: clamp(26px, 2.6vw, 44px);
  color: #000;
  font-weight: 700;
  padding: 0 20px;
  max-width: 100%;
}

.brands-scroll{
  overflow: hidden;
  width: 100%;
  position: relative;
}

.brands-track{
  display: flex;
  gap: 48px;
  animation: scroll-infinite 20s linear infinite;
  width: max-content;
}

.brand-item{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 140px;
  height: 100px;
  background: transparent;
  border: none;
  border-radius: 12px;
  padding: 8px;
  transition: all 0.3s ease;
}

.brand-item:hover{
  background: transparent;
  border-color: transparent;
  transform: translateY(-4px);
}

.brand-item img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  transition: filter 0.3s ease;
}

.brand-item:hover img{
  filter: none;
}

@keyframes scroll-infinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 640px){
  .brands-section{
    padding: 40px 0;
    width: 100%;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .brands-section h2{
    margin-bottom: 32px;
    font-size: 20px;
    padding: 0 16px;
    line-height: 1.3;
  }
  .brands-scroll{
    width: 100%;
    overflow: hidden;
  }
  .brands-track{
    gap: 32px;
    animation: scroll-infinite 12s linear infinite;
  }
  .brand-item{
    width: 220px;
    height: 140px;
    padding: 10px;
  }
  .brand-item img{
    width: 100%;
    height: 100%;
  }
}

/* VALUE PROPOSITION SECTION */
.value-section {
  padding: 100px 0;
  background: #fff;
}

.value-header {
  text-align: center;
  margin-bottom: 80px;
}

.power-badge {
  display: inline-block;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  color: #fbbf24;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 20px;
  border: 2px solid #fbbf24;
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.2);
}

.value-header h2 {
  margin: 0 0 16px;
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.value-header p {
  margin: 0;
  font-size: 16px;
  color: #666;
  font-weight: 400;
  line-height: 1.6;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: #fff;
  border: 2px solid #e5e5e5;
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.value-card-1 { border-color: #fecaca; background: linear-gradient(180deg, #fef2f2 0%, #ffffff 100%); }
.value-card-2 { border-color: #fde68a; background: linear-gradient(180deg, #fefce8 0%, #ffffff 100%); }
.value-card-3 { border-color: #bfdbfe; background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%); }

.value-card:hover {
  transform: translateY(-6px);
}

.value-card-1:hover { border-color: #ef4444; box-shadow: 0 12px 32px rgba(239, 68, 68, 0.15); }
.value-card-2:hover { border-color: #eab308; box-shadow: 0 12px 32px rgba(234, 179, 8, 0.15); }
.value-card-3:hover { border-color: #3b82f6; box-shadow: 0 12px 32px rgba(59, 130, 246, 0.15); }

.level-tag {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #1a1a1a, #333);
  color: #fbbf24;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid #fbbf24;
}

.card-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.value-card h3 {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.value-card-1 h3 { color: #dc2626; }
.value-card-2 h3 { color: #ca8a04; }
.value-card-3 h3 { color: #2563eb; }

.stat-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 0 8px;
}

.stat-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94a3b8;
  min-width: 70px;
  text-align: left;
}

.stat-bar {
  flex: 1;
  height: 8px;
  background: #f1f5f9;
  border-radius: 4px;
  overflow: hidden;
}

.value-card-1 .stat-fill { background: linear-gradient(90deg, #ef4444, #f87171); }
.value-card-2 .stat-fill { background: linear-gradient(90deg, #eab308, #fbbf24); }
.value-card-3 .stat-fill { background: linear-gradient(90deg, #3b82f6, #60a5fa); }

.stat-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1s ease;
}

.value-card p {
  margin: 0;
  font-size: 14px;
  color: #64748b;
  font-weight: 400;
  line-height: 1.6;
}

.arcade-cta {
  text-align: center;
  margin-top: 60px;
}

.arcade-cta a {
  text-decoration: none;
}

.arcade-cta span {
  display: inline-block;
  background: linear-gradient(135deg, #1a1a1a, #333);
  color: #fbbf24;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #fbbf24;
}

.arcade-cta span:hover {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1a1a1a;
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(251, 191, 36, 0.4);
}

/* Responsive Value Section */
@media (max-width: 1024px) {
  .value-cards {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .value-header {
    margin-bottom: 60px;
  }
  
  .value-card {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .value-section {
    padding: 80px 0;
  }
  
  .value-header h2 {
    font-size: 28px;
  }
  
  .power-badge {
    font-size: 11px;
    padding: 6px 16px;
  }
  
  .value-card {
    padding: 28px 20px;
    max-width: 100%;
  }
  
  .card-icon {
    font-size: 40px;
  }
  
  .value-card h3 {
    font-size: 18px;
  }
  
  .arcade-cta {
    margin-top: 40px;
  }
  
  .arcade-cta span {
    font-size: 12px;
    padding: 14px 24px;
  }
}

/* PRINTING HEADER SECTION */
.printing-header-section {
  padding: 80px 0 60px;
  background: #fff;
  text-align: center;
}

.printing-header-section h2 {
  margin: 0 0 16px;
  font-size: 42px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.printing-header-section p {
  margin: 0;
  font-size: 16px;
  color: #666;
  font-weight: 400;
  line-height: 1.6;
}

/* PRINTING TYPES SECTION */
.printing-section {
  width: 100%;
  padding: 0;
  background: #000;
}

.printing-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 350px;
  gap: 0;
  width: 100%;
}

.printing-card-fullwidth {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.printing-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.printing-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  transition: background 0.4s ease;
  z-index: 1;
}

.printing-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px;
  color: white;
  z-index: 2;
  transition: all 0.4s ease;
}

.printing-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.printing-card-fullwidth h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  color: white;
  letter-spacing: -0.3px;
}

.printing-card-fullwidth:hover .printing-bg {
  transform: scale(1.08);
}

.printing-card-fullwidth:hover .printing-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.printing-card-fullwidth:hover .printing-content {
  transform: translateY(-8px);
}

/* RESPONSIVE */
@media (max-width: 1400px) {
  .printing-container {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 320px;
  }
}

@media (max-width: 1200px) {
  .printing-container {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
  }
}

@media (max-width: 768px) {
  .printing-container {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 280px;
    gap: 0;
  }

  .printing-card-fullwidth h3 {
    font-size: 18px;
  }

  .printing-content {
    padding: 24px 20px;
  }

  /* Degradado oscuro en la parte inferior de cada card */
  .printing-bg::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
    z-index: 1;
  }
}

@media (max-width: 480px) {
  .printing-container {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .printing-card-fullwidth h3 {
    font-size: 16px;
  }

  .printing-content {
    padding: 20px 16px;
  }

  .printing-badge {
    font-size: 9px;
    margin-bottom: 12px;
  }
}


/* FAQ ARCADE SECTION */
.faq-arcade {
  padding: 120px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 50%, #f0f9ff 100%);
  position: relative;
  overflow: hidden;
}

.faq-arcade::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(34, 211, 238, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.faq-arcade .container {
  position: relative;
  z-index: 1;
}

.faq-arcade-header {
  text-align: center;
  margin-bottom: 80px;
}

.faq-arcade-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.faq-badge-icon {
  font-size: 16px;
}

.faq-arcade-title {
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 800;
  line-height: 1;
  margin: 0 0 20px;
  color: #1e293b;
  letter-spacing: -2px;
}

.faq-arcade-title span {
  background: linear-gradient(135deg, #6366f1 0%, #ec4899 50%, #22d3ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-arcade-subtitle {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
  color: #94a3b8;
  margin: 0;
}

.faq-arcade-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.faq-arcade-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  position: relative;
  border: 2px solid #e2e8f0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.faq-arcade-card::before {
  content: attr(data-level);
  position: absolute;
  top: -30px;
  right: -20px;
  font-size: 120px;
  font-weight: 900;
  color: rgba(99, 102, 241, 0.05);
  line-height: 1;
  pointer-events: none;
}

.faq-arcade-card:hover {
  transform: translateY(-8px);
  border-color: #6366f1;
  box-shadow: 
    0 20px 40px rgba(99, 102, 241, 0.15),
    0 0 0 1px rgba(99, 102, 241, 0.1);
}

.faq-arcade-card:nth-child(2):hover { border-color: #ec4899; box-shadow: 0 20px 40px rgba(236, 72, 153, 0.15); }
.faq-arcade-card:nth-child(3):hover { border-color: #22d3ee; box-shadow: 0 20px 40px rgba(34, 211, 238, 0.15); }
.faq-arcade-card:nth-child(4):hover { border-color: #f97316; box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15); }
.faq-arcade-card:nth-child(5):hover { border-color: #10b981; box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15); }

.faq-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.faq-level-badge {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
}

.faq-arcade-card:nth-child(2) .faq-level-badge { background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%); }
.faq-arcade-card:nth-child(3) .faq-level-badge { background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 100%); }
.faq-arcade-card:nth-child(4) .faq-level-badge { background: linear-gradient(135deg, #f97316 0%, #fb923c 100%); }
.faq-arcade-card:nth-child(5) .faq-level-badge { background: linear-gradient(135deg, #10b981 0%, #34d399 100%); }

.faq-level-badge.special {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #1e293b;
}

.faq-card-icon {
  font-size: 32px;
  filter: grayscale(0);
}

.faq-card-question {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  line-height: 1.3;
}

.faq-card-answer {
  margin-bottom: 20px;
}

.faq-answer-bar {
  height: 4px;
  width: 60px;
  background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 4px;
  margin-bottom: 12px;
}

.faq-arcade-card:nth-child(2) .faq-answer-bar { background: linear-gradient(90deg, #ec4899 0%, #f43f5e 100%); }
.faq-arcade-card:nth-child(3) .faq-answer-bar { background: linear-gradient(90deg, #22d3ee 0%, #06b6d4 100%); }
.faq-arcade-card:nth-child(4) .faq-answer-bar { background: linear-gradient(90deg, #f97316 0%, #fb923c 100%); }
.faq-arcade-card:nth-child(5) .faq-answer-bar { background: linear-gradient(90deg, #10b981 0%, #34d399 100%); }

.faq-answer-bar.special {
  background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
}

.faq-card-answer p {
  margin: 0;
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

.faq-card-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.faq-stat {
  background: #f1f5f9;
  color: #475569;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Special Card */
.faq-special {
  background: linear-gradient(135deg, #fef3c7 0%, #fef9c3 100%);
  border-color: #fbbf24;
}

.faq-special::before {
  color: rgba(251, 191, 36, 0.15);
}

.faq-special:hover {
  border-color: #f59e0b;
  box-shadow: 0 20px 40px rgba(251, 191, 36, 0.25);
}

.faq-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.faq-contact-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(30, 41, 59, 0.3);
}

.faq-contact-btn .btn-arrow {
  transition: transform 0.3s ease;
}

.faq-contact-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Footer */
.faq-arcade-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.faq-footer-line {
  height: 2px;
  width: 80px;
  background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
}

.faq-footer-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #94a3b8;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Responsive */
@media (max-width: 1024px) {
  .faq-arcade-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .faq-arcade-title {
    font-size: 56px;
  }
}

@media (max-width: 768px) {
  .faq-arcade {
    padding: 80px 0;
  }
  
  .faq-arcade-header {
    margin-bottom: 48px;
  }
  
  .faq-arcade-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 48px;
  }
  
  .faq-arcade-title {
    font-size: 40px;
    letter-spacing: -1px;
  }
  
  .faq-arcade-card {
    padding: 24px;
  }
  
  .faq-card-question {
    font-size: 16px;
  }

  .faq-footer-line {
    width: 40px;
  }
  
  .faq-footer-text {
    font-size: 10px;
    letter-spacing: 2px;
  }
}

/* COMPARISON SECTION */

