/* ============================================================
   NAVIGATOR 30 — PAGE STYLESHEET
   ============================================================ */

/* ── Hero section bg override ── */
.nav-product-section {
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(91,141,238,.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 30%, rgba(61,214,232,.07) 0%, transparent 60%),
    var(--dark);
}

/* ── Main image glow ring ── */
.nav-main-img { overflow: visible !important; }
.nav-glow-ring {
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(61,214,232,.15);
  animation: ringPulse 3s ease-in-out infinite;
  pointer-events: none; z-index: 0;
}
.nav-glow-ring::before {
  content: '';
  position: absolute; inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(61,214,232,.1);
  animation: ringPulse 3s ease-in-out infinite .5s;
}
@keyframes ringPulse {
  0%,100% { opacity: .4; transform: scale(1); }
  50%      { opacity: .9; transform: scale(1.04); }
}

/* ══════════════════════════════════
   DC CHARGER ILLUSTRATION
══════════════════════════════════ */
.dc-render {
  display: flex; align-items: center; justify-content: center;
  padding: 20px; position: relative; z-index: 1;
}
.dc-body {
  width: 200px;
  background: linear-gradient(170deg, #1a2a40 0%, #0d1e35 50%, #081525 100%);
  border-radius: 18px;
  border: 1.5px solid rgba(61,214,232,.3);
  box-shadow:
    0 0 0 1px rgba(61,214,232,.06),
    0 24px 80px rgba(0,0,0,.6),
    0 0 60px rgba(61,214,232,.12),
    inset 0 1px 0 rgba(255,255,255,.06);
  overflow: hidden;
  animation: dcFloat 5s ease-in-out infinite;
}
@keyframes dcFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

.dc-top-bar {
  height: 5px;
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--green));
}
.dc-header {
  padding: 14px 16px 10px;
  border-bottom: 1px solid rgba(61,214,232,.1);
  display: flex; flex-direction: column; gap: 3px;
}
.dc-brand-logo {
  font-family: 'Orbitron', sans-serif; font-size: .65rem;
  font-weight: 900; color: var(--cyan);
  letter-spacing: 3px; text-shadow: 0 0 10px rgba(61,214,232,.5);
}
.dc-model {
  font-family: 'Orbitron', sans-serif; font-size: .52rem;
  color: rgba(255,255,255,.35); letter-spacing: 2px;
}

.dc-screen-wrap { padding: 12px 14px; }
.dc-screen {
  background: #020a14;
  border-radius: 10px; padding: 12px;
  border: 1px solid rgba(61,214,232,.25);
  box-shadow: inset 0 0 20px rgba(61,214,232,.08);
}
.dc-screen-row {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 8px;
}
.dc-screen-row:last-child { margin-bottom: 0; }
.dc-lbl { font-family: 'Orbitron', sans-serif; font-size: .52rem; color: rgba(255,255,255,.3); letter-spacing: 1px; }
.dc-val { font-family: 'Orbitron', sans-serif; font-size: .8rem; font-weight: 700; color: #fff; }
.dc-val.cyan { color: var(--cyan); text-shadow: 0 0 10px rgba(61,214,232,.6); }
.dc-val.cyan small { font-size: .52rem; }
.dc-val.green { color: var(--green); font-size: .65rem; }
.blink-text { animation: statusBlink 2s ease-in-out infinite; }
@keyframes statusBlink { 0%,100% { opacity: .7; } 50% { opacity: 1; text-shadow: 0 0 10px rgba(46,232,160,.7); } }
.dc-bar-wrap { margin-top: 10px; }
.dc-bar { height: 4px; background: rgba(61,214,232,.1); border-radius: 3px; overflow: hidden; }
.dc-bar-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  border-radius: 3px;
  animation: barFill 3s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(61,214,232,.5);
}
@keyframes barFill { 0%,100% { width: 15%; } 50% { width: 88%; } }

.dc-connectors {
  display: flex; justify-content: space-around;
  padding: 10px 14px 14px; gap: 10px;
}
.dc-conn { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.dc-conn-head {
  font-family: 'Orbitron', sans-serif; font-size: .48rem;
  color: var(--cyan); letter-spacing: .5px; background: rgba(61,214,232,.08);
  padding: 3px 8px; border-radius: 6px; border: 1px solid rgba(61,214,232,.2);
}
.dc-conn-cable {
  width: 3px; height: 24px;
  background: linear-gradient(180deg, rgba(61,214,232,.5), rgba(61,214,232,.1));
  border-radius: 2px;
}
.dc-conn-plug {
  font-size: .9rem;
  filter: drop-shadow(0 0 6px rgba(61,214,232,.5));
  animation: plugGlow 2s ease-in-out infinite;
}
.dc-conn:last-child .dc-conn-plug { animation-delay: .6s; }
@keyframes plugGlow { 0%,100% { filter: drop-shadow(0 0 4px rgba(61,214,232,.3)); } 50% { filter: drop-shadow(0 0 10px rgba(61,214,232,.8)); } }

.dc-bottom-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--purple));
  opacity: .4;
}

/* ══════════════════════════════════
   BACKED BY THE BEST
══════════════════════════════════ */
.backed-section {
  padding: clamp(40px,5vw,64px) 0;
  background: var(--dark2);
  border-top: 1px solid rgba(61,214,232,.08);
  border-bottom: 1px solid rgba(61,214,232,.08);
}
.backed-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.1rem,2.5vw,1.5rem); font-weight: 800;
  color: #fff; text-align: center; margin-bottom: 36px;
}
.backed-logos {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(20px,4vw,56px); flex-wrap: wrap;
}
.bl-item { opacity: .55; transition: opacity .3s, transform .3s; }
.bl-item:hover { opacity: 1; transform: translateY(-4px); }
.bl-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Orbitron', sans-serif; font-size: .9rem;
  font-weight: 800; color: var(--muted); letter-spacing: 1.5px;
  white-space: nowrap;
}
.bl-logo span { font-size: 1.1rem; }

/* ══════════════════════════════════
   ALSO LIKE — DC variant
══════════════════════════════════ */
.nav-also-grid .also-dc {
  width: 110px; height: 180px;
  border-radius: 14px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; border: 2px solid;
  position: relative; z-index: 1;
  animation: dcFloat 5s ease-in-out infinite;
}
.nav-also-grid .also-dc.cyan   { border-color: var(--cyan);   background: rgba(61,214,232,.07);  box-shadow: 0 0 30px rgba(61,214,232,.2);  }
.nav-also-grid .also-dc.green  { border-color: var(--green);  background: rgba(46,232,160,.07);  box-shadow: 0 0 30px rgba(46,232,160,.2);  animation-delay:.5s; }
.nav-also-grid .also-dc.purple { border-color: var(--purple); background: rgba(91,141,238,.07);  box-shadow: 0 0 30px rgba(91,141,238,.2);  animation-delay:1s; }
.nav-also-grid .also-dc.orange { border-color: #f0a030;       background: rgba(240,160,48,.07);  box-shadow: 0 0 30px rgba(240,160,48,.2);  animation-delay:1.5s; }
.adc-kw  { font-family: 'Orbitron', sans-serif; font-size: .85rem; font-weight: 900; color: var(--cyan); }
.also-dc.green  .adc-kw { color: var(--green); }
.also-dc.purple .adc-kw { color: var(--purple); }
.also-dc.orange .adc-kw { color: #f0a030; }
.adc-icon { font-size: 2rem; }
.adc-name { font-family: 'Orbitron', sans-serif; font-size: .42rem; color: rgba(255,255,255,.35); letter-spacing: 2px; }

/* ══════════════════════════════════
   NEXT GEN FEATURES SECTION
══════════════════════════════════ */
.nextgen-section {
  padding: clamp(60px,8vw,110px) 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(61,214,232,.05) 0%, transparent 60%),
    var(--dark);
  position: relative;
}
.nextgen-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(61,214,232,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61,214,232,.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.nextgen-header { text-align: center; max-width: 720px; margin: 0 auto 60px; }

.nextgen-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.ng-card {
  border-radius: 24px; overflow: hidden;
  background: var(--dark3);
  border: 1px solid rgba(61,214,232,.12);
  transition: border-color .3s, transform .35s, box-shadow .35s;
}
.ng-card:hover { border-color: var(--cyan); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(61,214,232,.12); }

/* Image panel */
.ng-img {
  height: 240px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.ng-img.versatile { background: linear-gradient(135deg, #050f1e, #0a1e35); }
.ng-img.tomorrow  { background: linear-gradient(135deg, #05100e, #0a2018); }
.ng-img.always    { background: linear-gradient(135deg, #0a0518, #120a2a); }
.ng-img.safety    { background: linear-gradient(135deg, #100a04, #201408); }

.ng-img-inner { position: relative; z-index: 1; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }

/* Glow blob per card */
.ng-glow {
  position: absolute; width: 200px; height: 200px;
  border-radius: 50%; filter: blur(60px); opacity: .25; pointer-events: none;
}
.ng-glow.cyan   { background: var(--cyan); }
.ng-glow.green  { background: var(--green); }
.ng-glow.purple { background: var(--purple); }
.ng-glow.orange { background: #f0a030; }

/* Versatile — device screen */
.ng-device {
  width: 160px; background: #020a14;
  border: 1px solid rgba(61,214,232,.3); border-radius: 14px;
  padding: 16px; box-shadow: 0 0 30px rgba(61,214,232,.2), inset 0 0 20px rgba(61,214,232,.05);
}
.ng-ds-row { display: flex; justify-content: space-between; font-size: .72rem; margin-bottom: 10px; }
.ng-ds-row span:first-child { color: rgba(255,255,255,.4); font-family: 'Orbitron', sans-serif; font-size: .58rem; letter-spacing: 1px; }
.ng-cyan  { color: var(--cyan); font-weight: 700; text-shadow: 0 0 8px rgba(61,214,232,.6); }
.ng-green { color: var(--green); font-weight: 700; }
.ng-ds-bar { height: 6px; background: rgba(61,214,232,.1); border-radius: 4px; overflow: hidden; }
.ng-ds-bar::after {
  content: ''; display: block; height: 100%; width: 65%;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  border-radius: 4px; animation: barFill 3.5s ease-in-out infinite;
}

/* Tomorrow — car scene */
.ng-car-scene { display: flex; align-items: center; gap: 20px; }
.ng-car { font-size: 3.5rem; filter: drop-shadow(0 0 16px rgba(46,232,160,.4)); animation: carSlide 3s ease-in-out infinite; }
@keyframes carSlide { 0%,100% { transform: translateX(0); } 50% { transform: translateX(-8px); } }
.ng-charge-beam {
  width: 40px; height: 3px;
  background: linear-gradient(90deg, var(--green), transparent);
  border-radius: 2px; animation: beamPulse 1.5s ease-in-out infinite;
}
@keyframes beamPulse { 0%,100% { opacity: .3; width: 20px; } 50% { opacity: 1; width: 50px; } }
.ng-charger-mini { font-size: 2.5rem; filter: drop-shadow(0 0 12px rgba(46,232,160,.5)); }

/* Always — phone scene */
.ng-phone-scene { display: flex; align-items: flex-end; gap: 20px; }
.ng-phone-mock {
  width: 80px; background: #0a0520; border-radius: 14px;
  border: 1.5px solid rgba(91,141,238,.4); padding: 14px 10px;
  display: flex; flex-direction: column; gap: 6px; align-items: center;
  box-shadow: 0 0 20px rgba(91,141,238,.2);
}
.ng-pm-bar { height: 6px; width: 100%; background: rgba(91,141,238,.15); border-radius: 4px; }
.ng-pm-bar.active { background: linear-gradient(90deg, var(--purple), var(--cyan)); animation: barFill 2.5s ease-in-out infinite; }
.ng-pm-kw { font-family: 'Orbitron', sans-serif; font-size: .72rem; color: var(--purple); font-weight: 800; margin-top: 4px; }
.ng-signal { display: flex; gap: 4px; align-items: flex-end; margin-bottom: 6px; }
.ng-signal span { width: 6px; background: var(--purple); border-radius: 2px; opacity: .6; animation: signalPulse 1.5s ease-in-out infinite; }
.ng-signal span:nth-child(1) { height: 10px; }
.ng-signal span:nth-child(2) { height: 16px; animation-delay: .2s; }
.ng-signal span:nth-child(3) { height: 22px; animation-delay: .4s; }
@keyframes signalPulse { 0%,100% { opacity: .4; } 50% { opacity: 1; } }

/* Safety — cert badges */
.ng-cert-scene { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; justify-content: center; }
.ng-cert {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: rgba(240,160,48,.08); border: 1px solid rgba(240,160,48,.25);
  border-radius: 14px; padding: 16px 14px; min-width: 80px;
  transition: transform .3s;
}
.ng-cert:hover { transform: translateY(-4px); }
.ng-cert-icon { font-size: 1.8rem; }
.ng-cert-text { font-family: 'Orbitron', sans-serif; font-size: .52rem; color: #f0a030; text-align: center; letter-spacing: 1px; line-height: 1.5; }

/* Content area */
.ng-content { padding: 24px 26px 28px; }
.ng-content h3 { font-family: 'Orbitron', sans-serif; font-size: clamp(.85rem,1.8vw,1.05rem); color: #fff; margin-bottom: 12px; font-weight: 700; }
.ng-content p { color: var(--muted); font-size: .88rem; line-height: 1.8; }

/* ══════════════════════════════════
   FAQ SECTION
══════════════════════════════════ */
.faq-section {
  padding: clamp(60px,8vw,100px) 0;
  background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
  border-top: 1px solid rgba(61,214,232,.08);
}
.faq-wrap {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(16px,4vw,40px);
  display: grid; grid-template-columns: 1fr 380px;
  gap: clamp(32px,5vw,72px); align-items: start;
}

/* FAQ list */
.faq-left .tag { margin-bottom: 12px; }
.faq-left .sec-title { margin-bottom: 36px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid rgba(61,214,232,.1);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid rgba(61,214,232,.1); }
.faq-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 4px; background: none; border: none;
  color: var(--text); font-size: .93rem; font-weight: 500;
  cursor: pointer; text-align: left; transition: color .2s;
}
.faq-toggle span { flex: 1; line-height: 1.5; }
.faq-toggle svg { color: var(--muted); flex-shrink: 0; transition: transform .25s, color .2s; }
.faq-toggle:hover { color: var(--cyan); }
.faq-toggle:hover svg { color: var(--cyan); }
.faq-item.open .faq-toggle { color: var(--cyan); }
.faq-item.open .faq-toggle svg { transform: rotate(180deg); color: var(--cyan); }
.faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .3s ease;
  padding: 0 4px;
}
.faq-item.open .faq-body { max-height: 300px; padding: 0 4px 20px; }
.faq-body p { color: var(--muted); font-size: .88rem; line-height: 1.8; }

/* CTA card */
.faq-cta-card {
  background: linear-gradient(145deg, var(--dark3), rgba(61,214,232,.04));
  border: 1px solid rgba(61,214,232,.2);
  border-radius: 24px; padding: 36px 28px;
  text-align: center; position: sticky; top: 100px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.faq-cta-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); border-radius: 24px 24px 0 0;
}
.faq-cta-icon { font-size: 2.8rem; filter: drop-shadow(0 0 12px rgba(61,214,232,.4)); }
.faq-cta-card h3 { font-family: 'Orbitron', sans-serif; font-size: 1rem; color: #fff; font-weight: 700; line-height: 1.4; }
.faq-cta-card p { color: var(--muted); font-size: .85rem; line-height: 1.7; }
.faq-phone-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad); color: #000;
  font-family: 'Orbitron', sans-serif; font-size: .78rem; font-weight: 800;
  padding: 14px 24px; border-radius: 12px; width: 100%; justify-content: center;
  letter-spacing: .5px; transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 24px rgba(61,214,232,.3);
}
.faq-phone-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(61,214,232,.5); }
.faq-contact-btn {
  width: 100%; justify-content: center; font-size: .78rem;
  padding: 12px 20px; border-radius: 12px;
}
.faq-cta-avatar {
  font-size: 2.8rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.3));
}
.faq-cta-note { font-size: .75rem; color: var(--muted); }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .nextgen-grid { grid-template-columns: 1fr 1fr; }
  .faq-wrap { grid-template-columns: 1fr; }
  .faq-cta-card { position: static; }
}
@media (max-width: 768px) {
  .nextgen-grid { grid-template-columns: 1fr; }
  .backed-logos { gap: 20px 32px; }
  .ng-img { height: 200px; }
  .faq-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .ng-cert-scene { gap: 10px; }
  .ng-cert { min-width: 70px; padding: 12px 10px; }
}
