@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Outfit:wght@400;500;600;700;800;900&display=swap");

:root {
  --bg-deep: #04060d;
  --bg-surface: #090d18;
  --bg-card: rgba(11, 18, 32, 0.78);
  --bg-card-hover: rgba(16, 26, 46, 0.92);
  --bg-glass: rgba(15, 24, 40, 0.65);
  
  --border-subtle: rgba(0, 255, 102, 0.14);
  --border-active: rgba(0, 255, 102, 0.45);
  --border-cyan: rgba(0, 229, 255, 0.35);
  --border-purple: rgba(176, 85, 255, 0.35);
  --border-gold: rgba(255, 200, 0, 0.4);
  
  --text-main: #f8fafc;
  --text-body: #cbd5e1;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --neon-green: #00ff66;
  --neon-green-glow: rgba(0, 255, 102, 0.25);
  --neon-cyan: #00e5ff;
  --neon-cyan-glow: rgba(0, 229, 255, 0.25);
  --neon-purple: #b055ff;
  --neon-purple-glow: rgba(176, 85, 255, 0.25);
  --neon-gold: #ffc800;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;
  --max-width: 1320px;
  
  --font-head: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scrollbar-width: none !important; /* Hide scrollbar Firefox */
  -ms-overflow-style: none !important; /* Hide scrollbar IE 10+ */
}

/* Hide scrollbar completely across all browsers */
::-webkit-scrollbar {
  display: none !important;
  width: 0px !important;
  height: 0px !important;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--bg-deep);
  background-image: 
    radial-gradient(circle at 50% -10%, rgba(0, 255, 102, 0.14) 0%, transparent 60%),
    radial-gradient(circle at 85% 25%, rgba(0, 229, 255, 0.09) 0%, transparent 50%),
    radial-gradient(circle at 15% 70%, rgba(176, 85, 255, 0.08) 0%, transparent 50%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  padding-bottom: 60px;
  scrollbar-width: none !important;
}

.wrap {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

@media (max-width: 600px) {
  .wrap {
    padding: 0 14px;
  }
}

/* ── HEADER & NAVIGATION BAR ── */
.header-sticky-wrapper {
  position: relative;
  z-index: 1000;
  background: rgba(4, 6, 13, 0.95);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 24px;
}

@media (min-width: 992px) {
  .header-sticky-wrapper {
    position: sticky;
    top: 0;
    background: rgba(4, 6, 13, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    margin-bottom: 40px;
  }
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

@media (min-width: 992px) {
  .site-header {
    height: 80px;
    padding: 0;
  }
}

/* Mobile Header Streamline (< 991px) */
@media (max-width: 991px) {
  .header-sticky-wrapper {
    position: relative !important;
    top: auto !important;
    margin-bottom: 16px;
    background: rgba(4, 6, 13, 0.98);
  }

  .site-header {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
  }

  .brand {
    gap: 8px;
  }
  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  .brand-name {
    font-size: 1.15rem;
  }
  .brand-tag {
    font-size: 0.65rem;
  }

  .nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: var(--radius-md);
    gap: 3px;
    padding: 4px 6px;
    width: 100%;
    background: rgba(15, 23, 42, 0.7);
  }

  .nav a {
    padding: 5px 10px !important;
    font-size: 0.75rem !important;
  }

  /* Hide header action button on mobile to save vertical space; hero section has download buttons right below */
  .header-action {
    display: none !important;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-mark-glow {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
  opacity: 0.4;
  filter: blur(10px);
  animation: pulseGlow 3s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% { transform: scale(0.92); opacity: 0.3; }
  100% { transform: scale(1.2); opacity: 0.6; }
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 255, 102, 0.18), rgba(0, 229, 255, 0.18));
  border: 1px solid var(--border-active);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 900;
  color: var(--neon-green);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #ffffff 30%, var(--neon-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-tag {
  font-size: 0.725rem;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  background: rgba(10, 14, 26, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
}

.nav a {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav a:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.06);
}

.nav a.active {
  color: var(--bg-deep);
  font-weight: 700;
  background: linear-gradient(135deg, var(--neon-green), #00e5a3);
  box-shadow: 0 0 16px var(--neon-green-glow);
}

.header-action {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── CENTERED HERO SECTION WITH CENTERED IMAGE ── */
.hero-centered-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 44px;
}

.hero-centered-content {
  max-width: 880px;
  margin: 0 auto 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  background: rgba(0, 255, 102, 0.08);
  border: 1px solid rgba(0, 255, 102, 0.28);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--neon-green);
  margin-bottom: 18px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 10px var(--neon-green);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}

.hero-centered-title {
  font-family: var(--font-head);
  font-size: 3.25rem;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .hero-centered-title {
    font-size: 1.75rem;
    line-height: 1.25;
  }
}

.hero-title-highlight {
  background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-centered-desc {
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 760px;
}

@media (max-width: 768px) {
  .hero-centered-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 18px;
  }
}

.hero-centered-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  padding: 8px;
  background: linear-gradient(135deg, rgba(0, 255, 102, 0.25), rgba(0, 229, 255, 0.15), rgba(176, 85, 255, 0.25));
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8);
}

.hero-centered-image-card {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-surface);
}

.hero-centered-image-card img {
  width: 100%;
  height: auto;
  max-height: 500px;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-centered-image-card:hover img {
  transform: scale(1.02);
}

.hero-image-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  background: rgba(6, 10, 20, 0.88);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 600px) {
  .hero-image-overlay {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 10px 14px;
  }
}

.overlay-title {
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--text-main);
}
.overlay-subtitle {
  font-size: 0.75rem;
  color: var(--neon-green);
  font-weight: 600;
}

/* ── PRICING & WARRANTY CARD SECTION ── */
.pricing-section {
  margin: 44px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 24px;
}

@media (min-width: 860px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.price-card {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-active);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px -10px var(--neon-green-glow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-header {
  margin-bottom: 16px;
}

.price-badge-promo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 200, 0, 0.12);
  border: 1px solid var(--border-gold);
  font-family: var(--font-head);
  font-size: 0.775rem;
  font-weight: 800;
  color: var(--neon-gold);
  margin-bottom: 12px;
}

.price-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
}

.price-amount-box {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 14px 0;
}

.price-main {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--neon-green);
  line-height: 1;
}

.price-original {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dim);
  text-decoration: line-through;
}

.price-platform-tag {
  font-size: 0.875rem;
  color: var(--neon-cyan);
  font-weight: 700;
}

/* Warranty Box */
.warranty-card {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius-xl);
  background: rgba(176, 85, 255, 0.06);
  border: 1px solid rgba(176, 85, 255, 0.3);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px -10px var(--neon-purple-glow);
}

.warranty-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(176, 85, 255, 0.15);
  border: 1px solid rgba(176, 85, 255, 0.4);
  font-family: var(--font-head);
  font-size: 0.775rem;
  font-weight: 800;
  color: #d8b4fe;
  margin-bottom: 12px;
}

.warranty-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
}

.warranty-list li {
  padding: 8px 0 8px 26px;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.warranty-highlight {
  color: var(--neon-green);
  font-weight: 700;
}

/* ── 13 APP SCREENSHOT GALLERY GRID ── */
.gallery-section {
  margin: 44px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

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

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.gallery-card:hover {
  border-color: var(--border-active);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 16px 32px -8px var(--neon-green-glow);
}

.gallery-card-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 177.78%; /* 9:16 Phone Aspect Ratio */
  overflow: hidden;
  background: #000;
}

.gallery-card-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-card-img-wrapper img {
  transform: scale(1.04);
}

.gallery-card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid var(--border-subtle);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--neon-green);
  backdrop-filter: blur(8px);
  z-index: 2;
}

.gallery-card-caption {
  padding: 12px 14px;
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
}

.gallery-card-title {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}

.gallery-card-sub {
  font-size: 0.725rem;
  color: var(--text-dim);
}

/* ── STATS & HIGHLIGHTS GRID (4 COLUMNS DESKTOP) ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

@media (min-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.stat-card {
  padding: 22px 20px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(16px);
  transition: all 0.25s ease;
  text-align: center;
}

.stat-card:hover {
  border-color: var(--border-active);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -10px var(--neon-green-glow);
}

.stat-value {
  font-family: var(--font-head);
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--neon-green);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}

.stat-desc {
  font-size: 0.775rem;
  color: var(--text-dim);
}

/* ── SHOWCASE IMAGE CARDS (2 COLUMNS DESKTOP) ── */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 36px 0;
}

@media (min-width: 768px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.showcase-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.showcase-card:hover {
  border-color: var(--border-cyan);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px var(--neon-cyan-glow);
}

.showcase-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.showcase-card-body {
  padding: 20px 22px;
}

.showcase-card-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.showcase-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── CARDS & CONTAINERS FOR PAGES ── */
.card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 36px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  margin-bottom: 32px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .card {
    padding: 24px 18px;
  }
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--neon-green), var(--neon-cyan), transparent);
  opacity: 0.75;
}

.page-title {
  font-family: var(--font-head);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.meta {
  font-size: 0.875rem;
  color: var(--text-dim);
  margin-bottom: 24px;
}
.meta strong {
  color: var(--text-muted);
  font-weight: 600;
}

.lead {
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--text-body);
  margin-bottom: 28px;
  line-height: 1.75;
}

/* ── 3-COLUMN DESKTOP FEATURE / DOCUMENT LINK GRID ── */
.link-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 32px 0;
}

@media (min-width: 992px) {
  .link-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.link-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.link-card:hover {
  border-color: var(--border-active);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -8px rgba(0, 255, 102, 0.2);
}

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

.link-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(0, 255, 102, 0.1);
  border: 1px solid rgba(0, 255, 102, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-green);
  transition: all 0.3s ease;
}

.link-card:hover .link-card-icon {
  background: var(--neon-green);
  color: var(--bg-deep);
  box-shadow: 0 0 20px var(--neon-green-glow);
}

.link-card-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 16px;
  transition: all 0.2s ease;
}

.link-card:hover .link-card-arrow {
  background: var(--neon-green);
  color: var(--bg-deep);
  transform: translateX(4px);
}

.link-card-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.link-card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── ECU COMPATIBILITY TABLE ── */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.ecu-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.875rem;
}

.ecu-table th {
  background: rgba(0, 255, 102, 0.08);
  color: var(--neon-green);
  font-family: var(--font-head);
  font-weight: 700;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-subtle);
}

.ecu-table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-body);
}

.ecu-table tr:last-child td {
  border-bottom: none;
}

.ecu-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

/* ── BUTTONS ── */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-green), #00d957);
  color: var(--bg-deep);
  box-shadow: 0 4px 20px var(--neon-green-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 255, 102, 0.4);
  color: var(--bg-deep);
  text-decoration: none;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
}

/* ── HEADINGS & TEXT STYLES ── */
h2 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--neon-cyan);
  margin: 36px 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

h2::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 20px;
  background: var(--neon-cyan);
  border-radius: 2px;
  box-shadow: 0 0 12px var(--neon-cyan);
}

p {
  margin-bottom: 18px;
  color: var(--text-body);
}

ul, ol {
  margin-bottom: 24px;
  padding-left: 0;
  list-style: none;
}

ul li {
  position: relative;
  padding: 12px 0 12px 28px;
  color: var(--text-body);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
ul li:last-child {
  border-bottom: none;
}

ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  font-weight: 800;
  font-size: 14px;
  color: var(--neon-green);
}

ul li strong {
  color: var(--text-main);
  font-weight: 600;
}

ol {
  counter-reset: custom-counter;
}
ol li {
  counter-increment: custom-counter;
  position: relative;
  padding: 12px 0 12px 36px;
  color: var(--text-body);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
ol li::before {
  content: counter(custom-counter);
  position: absolute;
  left: 0;
  top: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.35);
  color: var(--neon-cyan);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── ALERT & INFO BOX ── */
.info-box {
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  background: rgba(176, 85, 255, 0.08);
  border: 1px solid rgba(176, 85, 255, 0.3);
  margin: 28px 0;
  position: relative;
  overflow: hidden;
}

.info-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--neon-purple);
  box-shadow: 0 0 14px var(--neon-purple);
}

.info-box-title {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 700;
  color: #d8b4fe;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-box p {
  color: var(--text-body);
  margin-bottom: 0;
  font-size: 0.9375rem;
  line-height: 1.75;
}

/* ── FAQ ACCORDION SECTION ── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 24px 0;
}

.faq-item {
  padding: 20px 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
}

.faq-question {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq-question::before {
  content: "Q.";
  color: var(--neon-green);
  font-weight: 900;
}

.faq-answer {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding-left: 24px;
}

/* ── MULTI-COLUMN FOOTER ── */
.site-footer-wrapper {
  border-top: 1px solid var(--border-subtle);
  background: rgba(4, 6, 13, 0.9);
  padding: 44px 0 28px;
  margin-top: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-brand-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
}

.footer-brand-desc {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.65;
}

.footer-col-title {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--neon-green);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.footer-links-col a:hover {
  color: var(--neon-green);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8125rem;
  color: var(--text-dim);
}
