/* ============================================================
   HHpoker / 德扑圈 — Neon Darkwave Synthwave Theme
   ============================================================ */

:root {
  --bg-deep: #0f001a;
  --bg-mid: #1a0030;
  --bg-card: rgba(20, 5, 40, 0.85);
  --neon-pink: #ff2d95;
  --neon-pink-glow: 0 0 10px #ff2d95, 0 0 30px #ff2d95, 0 0 60px #ff2d95;
  --neon-cyan: #00e5ff;
  --neon-cyan-glow: 0 0 10px #00e5ff, 0 0 30px #00e5ff, 0 0 60px #00e5ff;
  --neon-purple: #b347ea;
  --neon-purple-glow: 0 0 10px #b347ea, 0 0 30px #b347ea;
  --text-primary: #e0d6f0;
  --text-secondary: #a89bb8;
  --grid-color: rgba(255, 45, 149, 0.08);
  --sun-color-1: #ff2d95;
  --sun-color-2: #ff6b35;
  --border-glow: rgba(255, 45, 149, 0.4);
  --transition-speed: 0.3s;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', 'Roboto', system-ui, -apple-system, sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

a {
  text-decoration: none;
  color: var(--neon-cyan);
  transition: all var(--transition-speed) ease;
}
a:hover {
  color: var(--neon-pink);
  text-shadow: 0 0 10px var(--neon-pink);
}

img { max-width: 100%; height: auto; }

/* ============================================================
   Synthwave Background Elements
   ============================================================ */

/* 80s Grid */
.synthwave-grid {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(90deg, var(--grid-color) 1px, transparent 1px),
    linear-gradient(0deg, var(--grid-color) 1px, transparent 1px);
  background-size: 60px 60px;
  perspective: 800px;
  transform: perspective(800px) rotateX(60deg);
  transform-origin: center top;
}

/* Sun-cut horizon */
.synthwave-sun {
  position: fixed;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    0deg,
    var(--sun-color-1) 0%,
    var(--sun-color-2) 40%,
    transparent 100%
  );
  border-radius: 50% 50% 0 0;
  opacity: 0.25;
  filter: blur(20px);
}

/* Scanlines overlay */
.synthwave-scanlines {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
}

/* Floating particles */
.synthwave-particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   Content Wrapper
   ============================================================ */
.content-wrapper {
  position: relative;
  z-index: 1;
}

/* ============================================================
   Navbar
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 0, 26, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(255, 45, 149, 0.3);
  transition: all var(--transition-speed) ease;
}

.navbar.scrolled {
  border-bottom-color: var(--neon-cyan);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.15);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--neon-pink);
  text-shadow: var(--neon-pink-glow);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo span {
  color: var(--neon-cyan);
  text-shadow: var(--neon-cyan-glow);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-primary);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding: 0.25rem 0;
  transition: all var(--transition-speed) ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-pink);
  box-shadow: 0 0 8px var(--neon-pink);
  transition: width var(--transition-speed) ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--neon-pink);
  text-shadow: 0 0 8px var(--neon-pink);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--neon-cyan);
  border-radius: 3px;
  box-shadow: 0 0 8px var(--neon-cyan);
  transition: all var(--transition-speed) ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(10, 0, 26, 0.97);
  backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  transition: all var(--transition-speed) ease;
}

.mobile-menu a:hover {
  color: var(--neon-pink);
  text-shadow: var(--neon-pink-glow);
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,0,26,0.7) 0%, rgba(26,0,48,0.5) 50%, rgba(15,0,26,0.9) 100%),
    linear-gradient(90deg, rgba(15,0,26,0.8) 0%, transparent 50%, rgba(15,0,26,0.8) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--neon-cyan);
  border-radius: 50px;
  color: var(--neon-cyan);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-shadow: 0 0 8px var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
  margin-bottom: 2rem;
  animation: pulse-cyan 2s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 20px rgba(255, 45, 149, 0.5));
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: var(--neon-pink);
  color: #fff;
  box-shadow: var(--neon-pink-glow);
}

.btn-primary:hover {
  background: #ff5aad;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 20px #ff2d95, 0 0 50px #ff2d95, 0 0 80px #ff2d95;
}

.btn-outline {
  background: transparent;
  color: var(--neon-cyan);
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.2), inset 0 0 10px rgba(0, 229, 255, 0.1);
}

.btn-outline:hover {
  background: rgba(0, 229, 255, 0.1);
  color: var(--neon-cyan);
  box-shadow: var(--neon-cyan-glow);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* ============================================================
   Section Common
   ============================================================ */
.section {
  position: relative;
  z-index: 1;
  padding: 5rem 1.5rem;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-label {
  display: inline-block;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--neon-cyan);
  text-shadow: 0 0 8px var(--neon-cyan);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.section-divider {
  width: 80px;
  height: 3px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--neon-pink), transparent);
  box-shadow: 0 0 10px var(--neon-pink);
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 1.5rem auto 0;
}

/* ============================================================
   Features Section — 3x2 Grid
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 45, 149, 0.2);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-pink), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  border-color: var(--neon-pink);
  box-shadow: 0 0 30px rgba(255, 45, 149, 0.15), 0 10px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-8px);
}

.feature-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.8rem;
  background: rgba(255, 45, 149, 0.1);
  border: 2px solid rgba(255, 45, 149, 0.3);
  color: var(--neon-pink);
  text-shadow: 0 0 10px var(--neon-pink);
  transition: all 0.4s ease;
}

.feature-card:hover .feature-card-icon {
  border-color: var(--neon-pink);
  box-shadow: 0 0 20px rgba(255, 45, 149, 0.4);
  background: rgba(255, 45, 149, 0.15);
}

.feature-card-title {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.feature-card-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.feature-card:nth-child(even) .feature-card-icon {
  background: rgba(0, 229, 255, 0.1);
  border-color: rgba(0, 229, 255, 0.3);
  color: var(--neon-cyan);
  text-shadow: 0 0 10px var(--neon-cyan);
}

.feature-card:nth-child(even):hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.15), 0 10px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:nth-child(even):hover .feature-card-icon {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
  background: rgba(0, 229, 255, 0.15);
}

.feature-card:nth-child(even)::before {
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
}

/* ============================================================
   Stats Section
   ============================================================ */
.stats-section {
  background: linear-gradient(180deg, rgba(26,0,48,0.6) 0%, rgba(15,0,26,0.9) 100%);
  border-top: 1px solid rgba(255, 45, 149, 0.15);
  border-bottom: 1px solid rgba(255, 45, 149, 0.15);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
}

.stat-number {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--neon-cyan);
  text-shadow: var(--neon-cyan-glow);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-number.stat-pink {
  color: var(--neon-pink);
  text-shadow: var(--neon-pink-glow);
}

.stat-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-divider {
  width: 40px;
  height: 2px;
  margin: 0.75rem auto;
  background: var(--neon-pink);
  box-shadow: 0 0 8px var(--neon-pink);
}

/* ============================================================
   Testimonials Section
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 45, 149, 0.15);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-card:hover {
  border-color: var(--neon-pink);
  box-shadow: 0 0 25px rgba(255, 45, 149, 0.12), 0 5px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-5px);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--neon-pink);
  box-shadow: 0 0 15px rgba(255, 45, 149, 0.3);
  object-fit: cover;
}

.testimonial-card:nth-child(even) .testimonial-avatar {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

.testimonial-stars {
  color: #ffcc00;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.testimonial-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  color: #fff;
  letter-spacing: 0.05em;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--neon-cyan);
}

/* ============================================================
   FAQ Section
   ============================================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255, 45, 149, 0.15);
  border-radius: 6px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 45, 149, 0.35);
}

.faq-item.active {
  border-color: var(--neon-pink);
  box-shadow: 0 0 20px rgba(255, 45, 149, 0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
  gap: 1rem;
}

.faq-question:hover {
  color: var(--neon-cyan);
}

.faq-item.active .faq-question {
  color: var(--neon-pink);
}

.faq-arrow {
  flex-shrink: 0;
  color: var(--neon-pink);
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--neon-cyan);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ============================================================
   CTA Section
   ============================================================ */
.cta-section {
  text-align: center;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 45, 149, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-card {
  background: var(--bg-card);
  border: 2px solid rgba(255, 45, 149, 0.3);
  border-radius: 12px;
  padding: 4rem 2rem;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(255, 45, 149, 0.1), 0 15px 50px rgba(0, 0, 0, 0.4);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-pink), transparent);
  box-shadow: 0 0 15px var(--neon-pink);
}

.cta-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  box-shadow: 0 0 15px var(--neon-cyan);
}

.cta-title {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.cta-desc {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.cta-neon-text {
  color: var(--neon-pink);
  text-shadow: 0 0 10px var(--neon-pink);
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: rgba(10, 0, 26, 0.95);
  border-top: 2px solid rgba(255, 45, 149, 0.2);
  position: relative;
  z-index: 1;
  padding: 4rem 1.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h4 {
  color: var(--neon-cyan);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 8px var(--neon-cyan);
  text-transform: uppercase;
}

.footer-col p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--neon-pink);
  padding-left: 5px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 45, 149, 0.1);
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* ============================================================
   Page Header (for sub-pages)
   ============================================================ */
.page-header {
  padding: 10rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(26,0,48,0.8) 0%, rgba(15,0,26,0.9) 100%);
  border-bottom: 1px solid rgba(255, 45, 149, 0.15);
}

.page-header-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-header-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   About Page Content
   ============================================================ */
.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-block {
  background: var(--bg-card);
  border: 1px solid rgba(255, 45, 149, 0.15);
  border-radius: 8px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.about-block:hover {
  border-color: rgba(255, 45, 149, 0.3);
  box-shadow: 0 0 20px rgba(255, 45, 149, 0.08);
}

.about-block h3 {
  color: var(--neon-cyan);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 8px var(--neon-cyan);
}

.about-block p {
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 0.75rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 45, 149, 0.05);
  border: 1px solid rgba(255, 45, 149, 0.15);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.value-item:hover {
  border-color: var(--neon-pink);
  box-shadow: 0 0 20px rgba(255, 45, 149, 0.1);
}

.value-item i {
  font-size: 2rem;
  color: var(--neon-pink);
  margin-bottom: 1rem;
  text-shadow: 0 0 10px var(--neon-pink);
}

.value-item h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.value-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ============================================================
   Contact Page
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 45, 149, 0.2);
  border-radius: 8px;
  padding: 2.5rem;
}

.contact-info-card h3 {
  color: var(--neon-cyan);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 8px var(--neon-cyan);
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 45, 149, 0.1);
  border: 1px solid rgba(255, 45, 149, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-pink);
  font-size: 1rem;
}

.contact-info-text strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.contact-info-text span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 45, 149, 0.2);
  border-radius: 8px;
  padding: 2.5rem;
}

.contact-form-card h3 {
  color: var(--neon-pink);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 8px var(--neon-pink);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(15, 0, 26, 0.8);
  border: 1px solid rgba(255, 45, 149, 0.25);
  border-radius: 4px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--neon-pink);
  box-shadow: 0 0 15px rgba(255, 45, 149, 0.2);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

/* ============================================================
   Floating Elements
   ============================================================ */
.floating-cs {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--neon-pink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: var(--neon-pink-glow);
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
}

.floating-cs:hover {
  transform: scale(1.1);
  background: #ff5aad;
  color: #fff;
}

.floating-cs-tooltip {
  position: absolute;
  right: 65px;
  background: rgba(10, 0, 26, 0.95);
  border: 1px solid var(--neon-pink);
  border-radius: 4px;
  padding: 0.5rem 1rem;
  color: #fff;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.floating-cs:hover .floating-cs-tooltip {
  opacity: 1;
}

.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 0, 26, 0.9);
  border: 2px solid var(--neon-cyan);
  color: var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: rgba(0, 229, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
  color: var(--neon-cyan);
}

/* ============================================================
   Animations
   ============================================================ */
@keyframes pulse-cyan {
  0%, 100% { box-shadow: 0 0 5px rgba(0, 229, 255, 0.2); }
  50% { box-shadow: 0 0 20px rgba(0, 229, 255, 0.4); }
}

@keyframes neon-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow: var(--neon-pink-glow);
  }
  20%, 24%, 55% {
    text-shadow: 0 0 5px #ff2d95, 0 0 15px #ff2d95;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  .hero-title { font-size: 2rem; }
  .section { padding: 3rem 1rem; }
  .cta-card { padding: 2.5rem 1.5rem; }

  .floating-cs { bottom: 20px; right: 20px; }
  .back-to-top { bottom: 85px; right: 20px; }

  .contact-grid { grid-template-columns: 1fr; }
  .about-block { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
