:root {
  --bg-main: #0a0614;
  --bg-card: #150f24;
  --bg-card-hover: #1f1435;
  --border-neon: rgba(255, 42, 133, 0.35);
  --border-glow: rgba(147, 51, 234, 0.4);
  --pink-neon: #ff2a85;
  --purple-neon: #9333ea;
  --cyan-neon: #00f0ff;
  --text-primary: #ffffff;
  --text-secondary: #c4b5fd;
  --text-muted: #8b7ca8;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --max-w: 1200px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(255, 42, 133, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 40%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 30% 80%, rgba(0, 240, 255, 0.06) 0%, transparent 40%);
  background-attachment: fixed;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}
.section-pad {
  padding: 80px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan-neon);
  background: rgba(0, 240, 255, 0.1);
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid rgba(0, 240, 255, 0.3);
  margin-bottom: 12px;
}
.section-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 0 15px rgba(255, 42, 133, 0.4);
}
.section-desc {
  color: var(--text-secondary);
  font-size: 15px;
  margin-top: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid transparent;
  gap: 8px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink-neon), var(--purple-neon));
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 42, 133, 0.5);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 42, 133, 0.8);
}
.btn-secondary {
  background: rgba(21, 15, 36, 0.8);
  border-color: var(--border-neon);
  color: var(--text-primary);
}
.btn-secondary:hover {
  background: rgba(255, 42, 133, 0.15);
  border-color: var(--pink-neon);
}
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 6, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 42, 133, 0.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img {
  height: 36px;
  width: auto;
}
.brand-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
}
.brand-name span {
  color: var(--pink-neon);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.2s;
}
.nav-links a:hover {
  color: #fff;
  text-shadow: 0 0 8px var(--pink-neon);
}
.nav-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-neon);
  color: #fff;
  font-size: 20px;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
}
.hero {
  position: relative;
  padding: 100px 0 80px;
  text-align: center;
}
.hero-content {
  max-width: 860px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 42, 133, 0.12);
  border: 1px solid var(--pink-neon);
  border-radius: 30px;
  font-size: 13px;
  color: var(--pink-neon);
  margin-bottom: 24px;
  font-weight: 600;
}
.hero h1 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255, 42, 133, 0.6);
}
.hero-desc {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.stat-card {
  background: rgba(21, 15, 36, 0.6);
  border: 1px solid var(--border-glow);
  padding: 24px 16px;
  border-radius: 12px;
  transition: transform 0.3s;
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--pink-neon);
}
.stat-val {
  font-size: 32px;
  font-weight: 900;
  color: var(--cyan-neon);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}
.stat-lbl {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}
.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--pink-neon);
  box-shadow: 0 8px 30px rgba(255, 42, 133, 0.15);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,42,133,0.2), rgba(147,51,234,0.2));
  border: 1px solid var(--pink-neon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--pink-neon);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #fff;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.models-tag-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.model-tag {
  background: rgba(255, 42, 133, 0.08);
  border: 1px solid rgba(255, 42, 133, 0.25);
  color: var(--text-primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  transition: all 0.2s;
}
.model-tag:hover {
  border-color: var(--cyan-neon);
  color: var(--cyan-neon);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}
.scenes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 20px;
}
.scene-item {
  background: var(--bg-card);
  border: 1px solid rgba(147, 51, 234, 0.25);
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s;
}
.scene-item:hover {
  border-color: var(--pink-neon);
  background: var(--bg-card-hover);
}
.scene-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--cyan-neon);
  margin-bottom: 8px;
}
.scene-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  padding: 24px;
  border-radius: 10px;
  text-align: center;
  position: relative;
}
.step-num {
  width: 36px;
  height: 36px;
  background: var(--pink-neon);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin: 0 auto 16px;
  box-shadow: 0 0 12px var(--pink-neon);
}
.step-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #fff;
}
.step-card p {
  font-size: 13px;
  color: var(--text-muted);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.gallery-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.gallery-img-box {
  width: 100%;
  background: #000;
  overflow: hidden;
}
.gallery-img-box img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s;
  object-fit: cover;
}
.gallery-card:hover .gallery-img-box img {
  transform: scale(1.04);
}
.gallery-body {
  padding: 20px;
}
.gallery-body h4 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 6px;
}
.gallery-body p {
  font-size: 13px;
  color: var(--text-secondary);
}
.rating-banner {
  background: linear-gradient(135deg, rgba(255, 42, 133, 0.15), rgba(147, 51, 234, 0.15));
  border: 1px solid var(--pink-neon);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}
.rating-score {
  font-size: 40px;
  font-weight: 900;
  color: var(--pink-neon);
  text-shadow: 0 0 15px var(--pink-neon);
}
.rating-stars {
  color: #ffd700;
  font-size: 20px;
  letter-spacing: 2px;
}
.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border-glow);
}
.table-custom {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: var(--bg-card);
}
.table-custom th, .table-custom td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(147, 51, 234, 0.15);
  font-size: 14px;
}
.table-custom th {
  background: rgba(255, 42, 133, 0.1);
  color: var(--cyan-neon);
  font-weight: 700;
}
.table-custom tr:hover {
  background: rgba(255, 42, 133, 0.05);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: transform 0.3s;
}
.price-card.featured {
  border-color: var(--pink-neon);
  box-shadow: 0 0 20px rgba(255, 42, 133, 0.2);
}
.price-card:hover {
  transform: translateY(-4px);
}
.price-card h4 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 12px;
}
.price-val {
  font-size: 28px;
  font-weight: 800;
  color: var(--cyan-neon);
  margin-bottom: 16px;
}
.price-list {
  list-style: none;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: 20px;
  text-align: left;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: 12px;
  padding: 24px;
  position: relative;
}
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.reviewer-name {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}
.reviewer-role {
  font-size: 12px;
  color: var(--pink-neon);
  background: rgba(255, 42, 133, 0.1);
  padding: 2px 8px;
  border-radius: 10px;
}
.review-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.articles-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: 12px;
  padding: 30px;
}
.articles-links-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.art-link-btn {
  background: rgba(147, 51, 234, 0.1);
  border: 1px solid var(--border-glow);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.art-link-btn:hover {
  background: var(--pink-neon);
  color: #fff;
  border-color: var(--pink-neon);
}
.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 24px;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question:hover {
  color: var(--pink-neon);
}
.faq-answer {
  display: none;
  padding: 0 24px 18px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.faq-item.active .faq-answer {
  display: block;
}
.faq-item.active .faq-question {
  color: var(--cyan-neon);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: flex-start;
}
.contact-info-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  padding: 30px;
  border-radius: 12px;
}
.contact-item {
  margin-bottom: 20px;
}
.contact-item-title {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-item-val {
  font-size: 15px;
  color: #fff;
  font-weight: 600;
}
.form-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-neon);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(255, 42, 133, 0.1);
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  background: rgba(10, 6, 20, 0.8);
  border: 1px solid var(--border-glow);
  padding: 12px 16px;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.form-control:focus {
  border-color: var(--pink-neon);
  box-shadow: 0 0 10px rgba(255, 42, 133, 0.3);
}
select.form-control option {
  background: var(--bg-card);
  color: #fff;
}
textarea.form-control {
  resize: vertical;
  min-height: 100px;
}
.footer {
  background: #06030c;
  border-top: 1px solid rgba(147, 51, 234, 0.2);
  padding: 60px 0 30px;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}
.footer-brand h4 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 12px;
}
.footer-links-col h5 {
  font-size: 14px;
  color: #fff;
  margin-bottom: 14px;
}
.footer-links-col ul {
  list-style: none;
}
.footer-links-col li {
  margin-bottom: 8px;
}
.footer-links-col a:hover {
  color: var(--pink-neon);
}
.friend-links-box {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  margin-bottom: 24px;
}
.friend-links-box a {
  display: inline-block;
  margin-right: 16px;
  margin-bottom: 8px;
  color: var(--text-muted);
}
.friend-links-box a:hover {
  color: var(--cyan-neon);
}
.copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  color: #5d5370;
}
.floating-widget {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.widget-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--pink-neon);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(255, 42, 133, 0.4);
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}
.widget-btn:hover {
  background: var(--pink-neon);
  transform: scale(1.08);
}
.qr-popover {
  position: absolute;
  right: 60px;
  bottom: 0;
  background: var(--bg-card);
  border: 1px solid var(--pink-neon);
  padding: 12px;
  border-radius: 8px;
  display: none;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
  text-align: center;
  width: 140px;
}
.qr-popover img {
  width: 100%;
  height: auto;
  display: block;
}
.qr-popover span {
  display: block;
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 6px;
}
.widget-btn:hover .qr-popover {
  display: block;
}
@media (max-width: 992px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .flow-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--bg-main);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border-neon);
  }
  .nav-links.active {
    display: flex;
  }
  .nav-menu-toggle {
    display: block;
  }
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 28px;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .flow-steps {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 24px;
  }
}