/* ==========================================================================
   CHARGEBEAM EV CHARGING SOLUTIONS - DESIGN SYSTEM & STYLESHEET
   Official Brand Color Palette: ChargeBeam Signature Electric Lime (#78CC18) +
   Cyan (#06b6d4) + Deep Slate (#0a0f18)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  /* Official ChargeBeam Brand Colors */
  --brand-primary: #78CC18;
  --brand-primary-light: #96DB45;
  --brand-primary-dark: #5FA310;
  --brand-primary-glow: rgba(120, 204, 24, 0.4);
  
  --brand-accent: #06b6d4;
  --brand-accent-light: #22d3ee;
  --brand-accent-glow: rgba(6, 182, 212, 0.35);
  
  --brand-electric: #8AD62E;
  --brand-gold: #f59e0b;

  /* Theme Backgrounds */
  --bg-dark: #0a0f18;
  --bg-surface: #111827;
  --bg-surface-elevated: #1a2234;
  --bg-card: rgba(17, 24, 39, 0.78);
  --bg-card-hover: rgba(26, 34, 52, 0.9);
  --bg-glass: rgba(15, 23, 42, 0.65);
  --bg-input: #1e293b;

  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(120, 204, 24, 0.35);
  --border-cyan-glow: rgba(6, 182, 212, 0.35);

  /* Text & Typography */
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --text-highlight: #ffffff;
  --text-inverse: #0a0f18;

  /* Fonts */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Space Grotesk', monospace, sans-serif;

  /* Shadows & Glows */
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
  --glow-brand: 0 0 25px rgba(120, 204, 24, 0.3);
  --glow-cyan: 0 0 25px rgba(6, 182, 212, 0.25);

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease-out;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  line-height: 1.65;
  position: relative;
  min-height: 100vh;
  background-color: var(--bg-dark);
  background-image:
    radial-gradient(circle at 15% 15%, rgba(120, 204, 24, 0.09) 0%, transparent 45%),
    radial-gradient(circle at 85% 85%, rgba(6, 182, 212, 0.07) 0%, transparent 45%);
  background-attachment: fixed;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-highlight);
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
}

/* Ambient Lighting & Overlays */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

.glow-top-left {
  top: -10vw;
  left: -10vw;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, var(--brand-primary), transparent 70%);
}

.glow-top-right {
  top: 15vh;
  right: -10vw;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, var(--brand-accent), transparent 70%);
}

.glow-bottom-center {
  bottom: -15vh;
  left: 30vw;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--brand-primary-dark), transparent 70%);
}

.cyber-grid-overlay {
  position: fixed;
  inset: 0;
  background-size: 50px 50px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  pointer-events: none;
  z-index: 0;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.section-padding {
  padding: 6rem 0;
}

.section-header {
  max-width: 750px;
  margin: 0 auto 3.5rem auto;
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.font-bold { font-weight: 700; }

/* Gradients & Color Accents */
.text-gradient-cyan {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-electric {
  background: linear-gradient(135deg, var(--brand-primary-light) 0%, var(--brand-primary) 40%, var(--brand-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-cyan { color: var(--brand-primary); }
.text-green { color: var(--brand-primary); }
.text-emerald { color: var(--brand-primary-light); }

.section-tag {
  display: inline-block;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-primary);
  background: rgba(120, 204, 24, 0.12);
  border: 1px solid rgba(120, 204, 24, 0.3);
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.pulse-tag {
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 5px rgba(120, 204, 24, 0.2); }
  50% { box-shadow: 0 0 18px rgba(120, 204, 24, 0.45); }
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Glassmorphism Panels */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.glass-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(120, 204, 24, 0.3), transparent);
}

.hover-lift {
  transition: var(--transition-smooth);
}

.hover-lift:hover {
  transform: translateY(-6px);
  border-color: rgba(120, 204, 24, 0.4);
  box-shadow: var(--shadow-card), 0 0 25px rgba(120, 204, 24, 0.2);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 700;
  border-radius: 0.75rem;
  padding: 0.8rem 1.6rem;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  text-decoration: none;
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
  border-radius: 0.5rem;
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
  border-radius: 0.9rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-light) 100%);
  color: #060b13;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(120, 204, 24, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(120, 204, 24, 0.55);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-highlight);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(6, 182, 212, 0.15);
  color: var(--brand-accent-light);
  border: 1px solid rgba(6, 182, 212, 0.4);
}

.btn-secondary:hover {
  background: rgba(6, 182, 212, 0.3);
  color: #fff;
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(10, 15, 24, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.75rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  transition: var(--transition-fast);
}

.brand-logo:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.brand-logo-img {
  height: 40px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition-fast);
  padding: 0.4rem 0.2rem;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-highlight);
}

.highlight-link {
  color: var(--brand-primary) !important;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--brand-primary);
  box-shadow: 0 0 8px var(--brand-primary);
  animation: blink 1.5s infinite;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.network-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(120, 204, 24, 0.08);
  border: 1px solid rgba(120, 204, 24, 0.25);
  padding: 0.35rem 0.8rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.network-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--brand-primary);
}

.pulse {
  box-shadow: 0 0 0 0 rgba(120, 204, 24, 0.7);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(120, 204, 24, 0.7); }
  70% { box-shadow: 0 0 0 7px rgba(120, 204, 24, 0); }
  100% { box-shadow: 0 0 0 0 rgba(120, 204, 24, 0); }
}

.btn-whatsapp-header {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.45);
  color: #25d366;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-smooth);
}

.btn-whatsapp-header:hover {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
  transform: translateY(-2px);
}

.nav-whatsapp-mobile { display: none; }
.nav-cta-mobile { display: none; }
.mobile-toggle-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 0.5rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  padding-top: 10rem;
  padding-bottom: 5rem;
  text-align: center;
  position: relative;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.25rem;
  background: rgba(120, 204, 24, 0.1);
  border: 1px solid rgba(120, 204, 24, 0.3);
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 1.75rem;
}

.badge-icon {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  max-width: 960px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 780px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

/* Hero Metrics Grid */
.hero-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.metric-card {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  text-align: left;
}

.metric-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.metric-icon-box.cyan {
  background: rgba(120, 204, 24, 0.12);
  color: var(--brand-primary);
  border: 1px solid rgba(120, 204, 24, 0.35);
}

.metric-icon-box.green {
  background: rgba(120, 204, 24, 0.12);
  color: var(--brand-primary);
  border: 1px solid rgba(120, 204, 24, 0.35);
}

.metric-icon-box.purple {
  background: rgba(6, 182, 212, 0.12);
  color: var(--brand-accent-light);
  border: 1px solid rgba(6, 182, 212, 0.35);
}

.metric-icon-box.emerald {
  background: rgba(150, 219, 69, 0.12);
  color: var(--brand-primary-light);
  border: 1px solid rgba(150, 219, 69, 0.35);
}

.metric-content {
  display: flex;
  flex-direction: column;
}

.metric-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-highlight);
  line-height: 1.2;
}

.metric-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   CORE VALUE PILLARS (SOLUTIONS)
   ========================================================================== */

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

.pillar-card {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
}

.pillar-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.pillar-icon-wrapper.cyan { background: rgba(120, 204, 24, 0.15); color: var(--brand-primary); }
.pillar-icon-wrapper.emerald { background: rgba(120, 204, 24, 0.15); color: var(--brand-primary-light); }
.pillar-icon-wrapper.purple { background: rgba(6, 182, 212, 0.15); color: var(--brand-accent-light); }
.pillar-icon-wrapper.blue { background: rgba(6, 182, 212, 0.15); color: var(--brand-accent); }
.pillar-icon-wrapper.yellow { background: rgba(245, 158, 11, 0.15); color: var(--brand-gold); }
.pillar-icon-wrapper.pink { background: rgba(120, 204, 24, 0.15); color: var(--brand-primary); }

.pillar-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.pillar-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.pillar-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.25rem;
}

.pillar-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #cbd5e1;
}

.pillar-features li svg {
  width: 16px;
  height: 16px;
  color: var(--brand-primary);
  flex-shrink: 0;
}

/* ==========================================================================
   SMART ECOSYSTEM
   ========================================================================== */

.ecosystem-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.ecosystem-card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.ecosystem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(120, 204, 24, 0.35);
}

.highlight-eco-card {
  border-color: rgba(120, 204, 24, 0.4);
  background: radial-gradient(circle at top right, rgba(120, 204, 24, 0.1), var(--bg-card) 60%);
}

.ecosystem-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.ecosystem-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
}

.ecosystem-badge.cyan { background: rgba(120, 204, 24, 0.15); color: var(--brand-primary); }
.ecosystem-badge.emerald { background: rgba(120, 204, 24, 0.15); color: var(--brand-primary-light); }
.ecosystem-badge.purple { background: rgba(6, 182, 212, 0.15); color: var(--brand-accent-light); }
.ecosystem-badge.blue { background: rgba(6, 182, 212, 0.15); color: var(--brand-accent); }

.ecosystem-icon {
  width: 28px;
  height: 28px;
  color: var(--text-muted);
}

.ecosystem-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.ecosystem-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.ecosystem-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.eco-pill {
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.35rem 0.8rem;
  border-radius: 0.5rem;
  color: #e2e8f0;
}

/* ==========================================================================
   INTERACTIVE LIVE CHARGING SIMULATOR
   ========================================================================== */

.simulator-wrapper {
  padding: 2.5rem;
}

.sim-steps-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  overflow-x: auto;
  padding-bottom: 0.75rem;
}

.sim-step-btn {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  padding: 0.5rem 0.8rem;
  border-radius: 0.75rem;
  transition: var(--transition-smooth);
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.step-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.sim-step-btn.active .step-num {
  background: var(--brand-primary);
  color: #060b13;
  box-shadow: 0 0 15px rgba(120, 204, 24, 0.6);
}

.sim-step-btn.active .step-title {
  color: var(--text-highlight);
}

.sim-step-btn.completed .step-num {
  background: var(--brand-accent);
  color: #060b13;
}

.sim-step-line {
  flex-grow: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 0.5rem;
  min-width: 20px;
}

.sim-stage-content {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.sim-visual-viewport {
  background: #060b13;
  border: 1px solid rgba(120, 204, 24, 0.25);
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sim-graphic-box { width: 100%; }

.vehicle-station-graphic {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  position: relative;
  width: 100%;
}

.charger-kiosk-mock {
  width: 110px;
  height: 200px;
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  border: 2px solid rgba(120, 204, 24, 0.4);
  border-radius: 12px 12px 4px 4px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0 20px rgba(120, 204, 24, 0.2);
  position: relative;
}

.kiosk-screen-glow {
  background: #090e17;
  border: 1px solid rgba(120, 204, 24, 0.3);
  border-radius: 6px;
  padding: 6px;
  text-align: center;
}

.kiosk-status-badge {
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 4px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 4px;
}

.kiosk-status-badge.online { background: #14532d; color: #86efac; }
.kiosk-status-badge.charging { background: rgba(120, 204, 24, 0.2); color: var(--brand-primary); animation: pulse 1s infinite; }
.kiosk-status-badge.complete { background: #155e75; color: #67e8f9; }

.kiosk-brand {
  font-size: 0.55rem;
  font-weight: 700;
  color: #94a3b8;
  font-family: var(--font-heading);
}

.kiosk-mini-qr {
  margin-top: 4px;
  color: var(--brand-primary);
  display: flex;
  justify-content: center;
}

.kiosk-mini-qr svg {
  width: 24px;
  height: 24px;
}

.charging-gun-mock {
  width: 18px;
  height: 28px;
  background: #334155;
  border-radius: 4px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-smooth);
}

.ev-car-mock {
  position: relative;
  width: 190px;
  height: 90px;
}

.car-body {
  position: absolute;
  bottom: 12px;
  width: 100%;
  height: 60px;
  background: linear-gradient(135deg, #1e293b 0%, #15803d 100%);
  border-radius: 20px 40px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.car-roof {
  position: absolute;
  top: -24px;
  left: 30px;
  width: 100px;
  height: 28px;
  background: #0f172a;
  border-radius: 16px 24px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.car-window {
  position: absolute;
  top: 4px;
  left: 35px;
  width: 90px;
  height: 18px;
  background: rgba(120, 204, 24, 0.25);
  border-radius: 8px 16px 0 0;
}

.car-wheel {
  position: absolute;
  bottom: -8px;
  width: 32px;
  height: 32px;
  background: #090e17;
  border: 3px solid #64748b;
  border-radius: 50%;
}

.wheel-front { right: 20px; }
.wheel-back { left: 24px; }

.car-charge-port {
  position: absolute;
  top: 15px;
  left: -4px;
  width: 12px;
  height: 16px;
  background: #090e17;
  border: 2px solid var(--brand-primary);
  border-radius: 3px;
}

.car-battery-badge {
  position: absolute;
  top: 16px;
  right: 14px;
  background: rgba(0, 0, 0, 0.65);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-family: var(--font-heading);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  gap: 3px;
}

.car-battery-badge svg {
  width: 12px;
  height: 12px;
}

.power-cable {
  position: absolute;
  left: -30px;
  top: 22px;
  width: 35px;
  height: 4px;
  background: var(--brand-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  box-shadow: 0 0 10px var(--brand-primary);
}

.power-cable.connected {
  opacity: 1;
}

.sim-control-panel {
  display: flex;
  flex-direction: column;
}

.sim-step-badge {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--brand-primary);
  margin-bottom: 0.5rem;
}

.sim-step-heading {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.sim-step-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.sim-interactive-elements {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-subtle);
  border-radius: 0.85rem;
  padding: 1.25rem;
  margin-bottom: 1.75rem;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sim-actions-footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* ==========================================================================
   CLOUD CMS & TELEMETRY DASHBOARD PREVIEW
   ========================================================================== */

.cms-dashboard-mock {
  padding: 1.75rem;
  background: #0a0f18;
  border-color: rgba(120, 204, 24, 0.3);
  box-shadow: var(--shadow-card), 0 0 40px rgba(120, 204, 24, 0.08);
}

.cms-mock-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.cms-logo-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-primary);
  background: rgba(120, 204, 24, 0.1);
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  margin-right: 0.75rem;
}

.cms-hub-select {
  font-size: 0.85rem;
  color: #cbd5e1;
}

.cms-topbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cms-live-sync {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--brand-primary);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--brand-primary);
  animation: pulse-ring 2s infinite;
}

.cms-action-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-main);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.cms-action-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.cms-mock-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.3fr 1.1fr;
  gap: 1.5rem;
}

.cms-card {
  background: rgba(17, 24, 39, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.85rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}

.cms-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.cms-card-header h4 {
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cms-card-header h4 svg {
  width: 16px;
  height: 16px;
  color: var(--brand-primary);
}

.badge-tag {
  font-size: 0.7rem;
  background: rgba(120, 204, 24, 0.15);
  color: var(--brand-primary);
  padding: 2px 6px;
  border-radius: 4px;
}

.cms-bay-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cms-bay-item {
  background: #090e17;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.65rem;
  padding: 1rem;
}

.cms-bay-item.active-bay {
  border-color: rgba(120, 204, 24, 0.35);
}

.bay-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.bay-id {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

.bay-state {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.bay-state.in-use { background: rgba(120, 204, 24, 0.15); color: var(--brand-primary); }
.bay-state.available { background: rgba(6, 182, 212, 0.15); color: var(--brand-accent-light); }

.bay-progress-bar {
  width: 100%;
  height: 6px;
  background: #1e293b;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.bay-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
  border-radius: 3px;
  transition: width 0.5s ease;
}

.bay-progress-fill.idle { background: #475569; }

.bay-telemetry-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.bay-telemetry-row strong { color: #fff; }

.telemetry-reading {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--brand-primary);
}

.load-gauge-container { margin-bottom: 1.25rem; }

.load-meter-bar {
  width: 100%;
  height: 10px;
  background: #1e293b;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 0.4rem;
}

.load-meter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-primary) 0%, var(--brand-accent) 70%, var(--brand-gold) 100%);
  border-radius: 5px;
  transition: width 0.6s ease;
}

.load-meter-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--text-dim);
}

.cms-metrics-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.mini-stat-card {
  background: #090e17;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 0.5rem;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
}

.mini-stat-lbl {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.mini-stat-val {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.status-pill-green {
  font-size: 0.7rem;
  color: var(--brand-primary);
}

.cms-feed-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.feed-item {
  display: flex;
  gap: 0.6rem;
  font-size: 0.75rem;
  border-left: 2px solid var(--brand-primary);
  padding-left: 0.6rem;
}

.feed-time {
  color: var(--text-dim);
  white-space: nowrap;
}

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

.feed-title {
  color: #e2e8f0;
  font-weight: 600;
}

.feed-sub {
  color: var(--text-dim);
  font-size: 0.7rem;
}

.cms-controls-action-bar {
  display: flex;
  gap: 0.5rem;
}

.cms-ctrl-btn {
  flex: 1;
  background: rgba(120, 204, 24, 0.08);
  border: 1px solid rgba(120, 204, 24, 0.25);
  color: var(--brand-primary);
  padding: 0.5rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: var(--transition-fast);
}

.cms-ctrl-btn:hover {
  background: rgba(120, 204, 24, 0.2);
}

/* ==========================================================================
   COMPLETE PRODUCT CATALOG & HARDWARE STYLES
   ========================================================================== */

/* Deployment Sectors Strip */
.product-segments-strip {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 2rem;
  border-radius: 1rem;
  margin-bottom: 2.5rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.segments-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.segments-tags-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex: 1;
}

.segment-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  font-size: 0.8rem;
  color: #cbd5e1;
  font-weight: 500;
  transition: var(--transition-fast);
}

.segment-tag:hover {
  border-color: var(--brand-primary);
  color: #fff;
  background: rgba(120, 204, 24, 0.1);
}

/* Product Filter Controls */
.product-filter-bar {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.prod-filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 0.85rem 1.6rem;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition-smooth);
}

.prod-filter-btn:hover {
  color: var(--text-highlight);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.prod-filter-btn.active {
  background: linear-gradient(135deg, rgba(120, 204, 24, 0.2), rgba(6, 182, 212, 0.15));
  border-color: var(--brand-primary);
  color: #fff;
  box-shadow: 0 0 20px rgba(120, 204, 24, 0.3);
}

/* 10-Product Master Catalog Grid */
.product-catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.75rem;
  margin-bottom: 4rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.75rem;
  border-radius: 1.25rem;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  transition: var(--transition-smooth);
  backdrop-filter: blur(16px);
}

.product-card:hover {
  border-color: rgba(120, 204, 24, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35), 0 0 20px rgba(120, 204, 24, 0.15);
  transform: translateY(-6px);
}

.product-card.highlight-flagship {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.85) 0%, rgba(20, 40, 20, 0.65) 100%);
  border: 2px solid rgba(120, 204, 24, 0.6);
  box-shadow: 0 0 30px rgba(120, 204, 24, 0.25);
}

.flagship-top-tag {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #78cc18;
  margin-bottom: 0.3rem;
}

.prod-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.prod-type-pill {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
}

.prod-type-pill.ac {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #34d399;
}

.prod-type-pill.dc {
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.35);
  color: #38bdf8;
}

.prod-type-pill.megawatt {
  background: linear-gradient(135deg, rgba(120, 204, 24, 0.25), rgba(6, 182, 212, 0.25));
  border: 1px solid var(--brand-primary);
  color: #78cc18;
}

.prod-power-badge {
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.prod-power-badge.dc {
  color: #38bdf8;
  border-color: rgba(56, 189, 248, 0.3);
}

.prod-power-badge.megawatt {
  color: #78cc18;
  font-weight: 900;
  border-color: rgba(120, 204, 24, 0.5);
  background: rgba(120, 204, 24, 0.1);
}

.prod-visual {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.prod-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.prod-icon-circle.ac {
  color: #34d399;
  border-color: rgba(52, 211, 153, 0.3);
  background: rgba(52, 211, 153, 0.08);
}

.prod-icon-circle.dc {
  color: #38bdf8;
  border-color: rgba(56, 189, 248, 0.3);
  background: rgba(56, 189, 248, 0.08);
}

.prod-icon-circle.megawatt {
  color: #78cc18;
  border-color: rgba(120, 204, 24, 0.4);
  background: rgba(120, 204, 24, 0.15);
  box-shadow: 0 0 15px rgba(120, 204, 24, 0.3);
}

.prod-body {
  margin-bottom: 1.5rem;
}

.prod-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.35rem;
}

.prod-gun-spec {
  font-size: 0.85rem;
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.prod-desc {
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.prod-vehicle-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
}

.v-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.55rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  font-size: 0.72rem;
  color: #cbd5e1;
  font-weight: 600;
}

.prod-locations {
  color: #64748b;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.prod-footer {
  margin-top: auto;
}

/* Official Product Brochure Banner */
.product-brochure-banner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  padding: 2.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(10, 30, 25, 0.7) 100%);
  border: 1px solid rgba(120, 204, 24, 0.3);
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 3rem;
}

.brochure-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin: 0.75rem 0 1rem 0;
}

.brochure-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.brochure-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.brochure-thumbnail-card {
  position: relative;
  display: block;
  width: 100%;
  max-width: 440px;
  border-radius: 1rem;
  overflow: hidden;
  border: 2px solid rgba(120, 204, 24, 0.4);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(120, 204, 24, 0.2);
  transition: var(--transition-smooth);
  background: #ffffff;
  padding: 6px;
  cursor: pointer;
}

.brochure-thumbnail-card:hover {
  border-color: #78cc18;
  transform: translateY(-4px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.6), 0 0 35px rgba(120, 204, 24, 0.4);
}

.brochure-preview-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.65rem;
  object-fit: contain;
}

.brochure-zoom-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(10, 15, 20, 0.9);
  border: 1px solid rgba(120, 204, 24, 0.6);
  color: #78cc18;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.45rem 0.9rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* Full-Size Lightbox Modal Styles */
.brochure-modal-card {
  max-width: 860px;
  width: 95%;
  max-height: 94vh;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(120, 204, 24, 0.4);
}

.brochure-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
  padding-right: 2.5rem;
}

.brochure-modal-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brochure-modal-body {
  overflow-y: auto;
  max-height: calc(85vh - 70px);
  display: flex;
  justify-content: center;
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 0.75rem;
}

.brochure-full-modal-img {
  width: 100%;
  max-width: 780px;
  height: auto;
  display: block;
  border-radius: 0.5rem;
}

@media (max-width: 900px) {
  .product-brochure-banner {
    grid-template-columns: 1fr;
  }
}

.hardware-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hw-tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 0.9rem 1.75rem;
  border-radius: 0.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition-smooth);
}

.hw-tab-btn:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text-highlight);
}

.hw-tab-btn.active {
  background: linear-gradient(135deg, rgba(120, 204, 24, 0.15), rgba(6, 182, 212, 0.08));
  border-color: var(--brand-primary);
  color: var(--text-highlight);
  box-shadow: 0 0 20px rgba(120, 204, 24, 0.25);
}

.hw-tab-pane { display: none; }
.hw-tab-pane.active { display: block; }

.hw-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 3rem;
  padding: 3rem;
  align-items: center;
}

.hw-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  display: inline-block;
  margin-bottom: 1rem;
}

.hw-badge.cyan { background: rgba(120, 204, 24, 0.15); color: var(--brand-primary); }
.hw-badge.emerald { background: rgba(150, 219, 69, 0.15); color: var(--brand-primary-light); }

.hw-model-name {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.hw-summary {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.hw-specs-table {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0.85rem;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.spec-name {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.spec-name svg {
  width: 16px;
  height: 16px;
  color: var(--brand-primary);
}

.spec-val {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  text-align: right;
}

.highlight-cyan { color: var(--brand-primary); }
.highlight-emerald { color: var(--brand-primary-light); }

.hw-cta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hw-warranty {
  font-size: 0.85rem;
  color: var(--brand-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hw-visual-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hw-kiosk-render {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.kiosk-body-3d {
  width: 170px;
  height: 290px;
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 70%, #020617 100%);
  border: 3px solid rgba(120, 204, 24, 0.45);
  border-radius: 18px 18px 6px 6px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 0 35px rgba(120, 204, 24, 0.25);
  position: relative;
  z-index: 2;
}

.kiosk-body-3d.compact {
  width: 150px;
  height: 250px;
  border-color: rgba(6, 182, 212, 0.45);
  box-shadow: 0 0 35px rgba(6, 182, 212, 0.25);
}

.kiosk-top-light {
  width: 50px;
  height: 4px;
  background: var(--brand-primary);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--brand-primary);
  margin-bottom: 12px;
}

.kiosk-top-light.green {
  background: var(--brand-accent);
  box-shadow: 0 0 10px var(--brand-accent);
}

.kiosk-screen-face {
  width: 100%;
  background: #020617;
  border: 1px solid rgba(120, 204, 24, 0.3);
  border-radius: 8px;
  padding: 10px 6px;
  text-align: center;
  margin-bottom: 18px;
}

.screen-logo {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.screen-qr-mock {
  color: var(--brand-primary);
  margin-bottom: 6px;
}

.screen-qr-mock svg {
  width: 38px;
  height: 38px;
}

.screen-kwh-mock {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--brand-primary);
}

.kiosk-guns-duo {
  display: flex;
  gap: 12px;
  margin-top: auto;
  margin-bottom: 10px;
}

.gun-cradle {
  width: 50px;
  height: 36px;
  background: #334155;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gun-tag {
  font-size: 0.55rem;
  font-weight: 700;
  color: #94a3b8;
}

.kiosk-base-plate {
  width: 100%;
  height: 8px;
  background: #475569;
  border-radius: 3px;
}

.kiosk-shadow {
  width: 180px;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(120, 204, 24, 0.3) 0%, transparent 70%);
  margin-top: -10px;
  z-index: 1;
}

/* ==========================================================================
   INTERACTIVE HOST REVENUE CALCULATOR
   ========================================================================== */

.calc-container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  padding: 3rem;
}

.calc-panel-title {
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.calc-panel-title svg {
  width: 20px;
  height: 20px;
  color: var(--brand-primary);
}

.calc-input-group {
  margin-bottom: 1.75rem;
}

.calc-input-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.calc-input-header label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e2e8f0;
}

.calc-value-display {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-primary);
}

.custom-slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #1e293b;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brand-primary);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(120, 204, 24, 0.8);
  border: 2px solid #060b13;
}

.custom-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brand-primary);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(120, 204, 24, 0.8);
  border: 2px solid #060b13;
}

.slider-marks {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 0.4rem;
}

.radio-toggle-group {
  display: flex;
  gap: 0.75rem;
}

.radio-pill {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.65rem;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.radio-pill input { display: none; }

.radio-pill.active {
  background: rgba(120, 204, 24, 0.15);
  border-color: var(--brand-primary);
  color: #fff;
}

.calc-results-col {
  display: flex;
  flex-direction: column;
}

.calc-highlight-box {
  background: linear-gradient(135deg, rgba(120, 204, 24, 0.15) 0%, rgba(6, 182, 212, 0.1) 100%);
  border: 1px solid rgba(120, 204, 24, 0.4);
  border-radius: 1rem;
  padding: 1.75rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.calc-hl-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.4rem;
}

.calc-hl-number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.4rem;
  display: block;
}

.calc-hl-sub {
  font-size: 0.8rem;
  color: var(--brand-primary-light);
}

.calc-mini-results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.calc-stat-item {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.cstat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.cstat-val {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.calc-disclaimer {
  display: block;
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 0.85rem;
  line-height: 1.4;
}

/* ==========================================================================
   TURNKEY ROADMAP
   ========================================================================== */

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.roadmap-card {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.rm-phase-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-dim);
}

.rm-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.rm-icon-circle.cyan { background: rgba(120, 204, 24, 0.15); color: var(--brand-primary); }
.rm-icon-circle.emerald { background: rgba(120, 204, 24, 0.15); color: var(--brand-primary-light); }
.rm-icon-circle.purple { background: rgba(6, 182, 212, 0.15); color: var(--brand-accent-light); }
.rm-icon-circle.blue { background: rgba(6, 182, 212, 0.15); color: var(--brand-accent); }

.rm-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.rm-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.rm-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-primary);
  background: rgba(120, 204, 24, 0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  display: inline-block;
  align-self: flex-start;
}

/* ==========================================================================
   PARTNERSHIP MODELS
   ========================================================================== */

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

.model-card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.highlight-model-card {
  border-color: rgba(120, 204, 24, 0.5);
  background: radial-gradient(circle at top, rgba(120, 204, 24, 0.12), var(--bg-card) 70%);
  transform: scale(1.02);
}

.model-type {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.5rem;
}

.best-tag { color: var(--brand-primary); }

.model-name {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.model-summary {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.model-perks {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.model-perks li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #cbd5e1;
}

.model-perks li svg {
  width: 16px;
  height: 16px;
  color: var(--brand-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   CONTACT / SITE SURVEY FORM
   ========================================================================== */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3.5rem;
  padding: 3.5rem;
}

.contact-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.contact-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.c-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.c-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(120, 204, 24, 0.12);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-detail-lbl {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

.c-detail-txt {
  font-size: 0.95rem;
  color: #e2e8f0;
  font-weight: 500;
}

.station-inquiry-form {
  background: rgba(10, 15, 24, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 2rem;
}

.form-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 0.4rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.65rem;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-input:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 15px rgba(120, 204, 24, 0.25);
  background: rgba(255, 255, 255, 0.07);
}

.form-input option {
  background: #0f172a;
  color: #fff;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  border-top: 1px solid var(--border-subtle);
  background: #060a11;
  padding: 5rem 0 2rem 0;
  position: relative;
  z-index: 10;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-tagline {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer-certifications {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cert-pill {
  font-size: 0.75rem;
  color: var(--brand-primary);
  background: rgba(120, 204, 24, 0.1);
  border: 1px solid rgba(120, 204, 24, 0.25);
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-col-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-list a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-nav-list a:hover {
  color: var(--brand-primary);
  transform: translateX(3px);
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-bottom-links a {
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--brand-primary);
}

/* ==========================================================================
   TOAST & MODALS
   ========================================================================== */

.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 2000;
  background: rgba(17, 24, 39, 0.95);
  border: 1px solid var(--brand-primary);
  backdrop-filter: blur(12px);
  border-radius: 0.85rem;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(120, 204, 24, 0.35);
  transform: translateY(150%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(120, 204, 24, 0.2);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.15rem;
}

.toast-msg {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: 100%;
  max-width: 520px;
  padding: 2.25rem;
  position: relative;
  background: #0f172a;
  border-color: rgba(120, 204, 24, 0.4);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.4rem;
}

.modal-close-btn:hover { color: #fff; }

.invoice-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1rem;
}

.invoice-logo {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.invoice-badge-paid {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-primary);
  background: rgba(120, 204, 24, 0.15);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.invoice-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem;
  border-radius: 0.65rem;
}

.inv-lbl {
  font-size: 0.7rem;
  color: var(--text-dim);
  display: block;
}

.inv-val {
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
}

.invoice-table { margin-bottom: 1.5rem; }

.inv-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
  gap: 0.5rem;
  font-size: 0.8rem;
  padding: 0.4rem 0;
  color: #cbd5e1;
}

.inv-table-header {
  font-weight: 700;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 0.5rem;
}

.inv-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 0.5rem 0;
}

.inv-total-row {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 700;
  padding-top: 0.5rem;
}

.invoice-actions {
  display: flex;
  gap: 0.75rem;
}

/* ==========================================================================
   INSTAGRAM & LIVE STATION SHOWCASE GALLERY WITH 2-SECOND AUTO-SLIDER
   ========================================================================== */

.gallery-section {
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem;
  margin-bottom: 3.5rem;
}

.gallery-item-card {
  border-radius: 1.25rem;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-card);
}

.gallery-item-card:hover {
  transform: translateY(-6px);
  border-color: rgba(120, 204, 24, 0.45);
  box-shadow: var(--shadow-card), 0 0 30px rgba(120, 204, 24, 0.2);
}

.gallery-item-card.featured-card {
  border-color: rgba(120, 204, 24, 0.6);
  background: radial-gradient(circle at top left, rgba(120, 204, 24, 0.12), var(--bg-card) 70%);
  box-shadow: var(--shadow-card), 0 0 35px rgba(120, 204, 24, 0.25);
}

/* 2-Second Image Auto-Slider */
.gallery-slider {
  position: relative;
  width: 100%;
  height: 270px;
  overflow: hidden;
  background: #000;
  user-select: none;
}

.gallery-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.75s ease-in-out, transform 0.75s ease-in-out;
  transform: scale(1.03);
}

.gallery-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.gallery-slide .gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-caption-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(10, 15, 24, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  z-index: 5;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.slider-dots {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 6;
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 8px;
  border-radius: 9999px;
  backdrop-filter: blur(6px);
}

.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  width: 20px;
  background: var(--brand-primary);
  box-shadow: 0 0 8px var(--brand-primary);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(10, 15, 24, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.2s ease;
  z-index: 7;
}

.gallery-slider:hover .slider-arrow {
  opacity: 0.9;
}

.slider-arrow:hover {
  background: var(--brand-primary);
  color: #060b13;
  border-color: var(--brand-primary);
}

.slider-arrow.prev { left: 12px; }
.slider-arrow.next { right: 12px; }

.gallery-insta-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(10, 15, 24, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.3rem 0.7rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  z-index: 6;
}

.gallery-insta-badge svg {
  color: #e1306c;
}

.gallery-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.gallery-badge-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.65rem;
}

.new-launch-tag {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
  color: #060b13;
  font-weight: 800;
  font-size: 0.72rem;
  padding: 0.22rem 0.65rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.active-badge {
  background: rgba(6, 182, 212, 0.15);
  color: var(--brand-accent-light);
  border: 1px solid rgba(6, 182, 212, 0.35);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.22rem 0.65rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.gallery-location-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.gallery-location-tag svg {
  width: 14px;
  height: 14px;
}

.gallery-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
  color: var(--text-highlight);
  line-height: 1.3;
}

.gallery-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.gallery-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.stat-highlight {
  font-weight: 700;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.insta-link-btn {
  color: #e1306c;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: var(--transition-fast);
}

.insta-link-btn:hover {
  color: #f77737;
  transform: translateX(3px);
}

/* Instagram Banner CTA */
.insta-banner-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.25rem 2.75rem;
  background: linear-gradient(135deg, rgba(120, 204, 24, 0.12) 0%, rgba(225, 48, 108, 0.12) 100%);
  border: 1px solid rgba(120, 204, 24, 0.3);
  border-radius: 1.25rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.insta-banner-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.insta-icon-large {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(225, 48, 108, 0.35);
  flex-shrink: 0;
}

.insta-banner-text h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.insta-banner-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.btn-instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(225, 48, 108, 0.35);
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(225, 48, 108, 0.55);
  color: #fff;
}

/* Footer Social Icon */
.footer-social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.footer-social-btn:hover {
  background: rgba(120, 204, 24, 0.15);
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  transform: translateY(-3px);
}

.footer-social-btn.instagram:hover {
  background: rgba(225, 48, 108, 0.22);
  border-color: #e1306c;
  color: #e1306c;
}

.footer-social-btn.whatsapp:hover {
  background: rgba(37, 211, 102, 0.22);
  border-color: #25d366;
  color: #25d366;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (BOTTOM-LEFT FIXED)
   ========================================================================== */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 99999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5), 0 0 20px rgba(37, 211, 102, 0.35);
  transition: var(--transition-smooth);
  text-decoration: none;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.8);
  color: #fff;
}

.floating-whatsapp-tooltip {
  position: absolute;
  left: 70px;
  background: #0f172a;
  border: 1px solid rgba(37, 211, 102, 0.5);
  color: #fff;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.floating-whatsapp-btn:hover .floating-whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   WHATSAPP INTERACTIVE POPUP CHAT WIDGET (SMALL SCREEN POPUP)
   ========================================================================== */

.whatsapp-chat-widget {
  position: fixed;
  bottom: 95px;
  left: 24px;
  width: 380px;
  max-width: calc(100vw - 36px);
  background: #0b141a;
  border: 1px solid rgba(37, 211, 102, 0.45);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(37, 211, 102, 0.25);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(25px) scale(0.92);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease, visibility 0.25s;
}

.whatsapp-chat-widget.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

/* Header */
.wa-widget-header {
  background: linear-gradient(135deg, #075e54 0%, #128c7e 100%);
  padding: 0.85rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  position: relative;
}

.wa-header-avatar-box {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.wa-header-avatar {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wa-status-dot {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 11px;
  height: 11px;
  background: #25d366;
  border: 2px solid #075e54;
  border-radius: 50%;
}

.wa-header-info {
  flex-grow: 1;
  min-width: 0;
}

.wa-header-name {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wa-verified-badge svg {
  vertical-align: middle;
}

.wa-header-status {
  font-size: 0.72rem;
  color: #d1fae5;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.online-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 6px #25d366;
}

.wa-header-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.wa-header-icon-btn {
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.wa-header-icon-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.08);
  color: #fff;
}

.wa-close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0 0.3rem;
  line-height: 1;
  opacity: 0.85;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.wa-close-btn:hover {
  opacity: 1;
  transform: scale(1.15);
}

/* Chat Body */
.wa-widget-body {
  padding: 1rem;
  background-color: #0b141a;
  background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 14px 14px;
  height: 340px;
  max-height: 48vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  scroll-behavior: smooth;
}

.wa-widget-body::-webkit-scrollbar {
  width: 5px;
}
.wa-widget-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
}

.wa-chat-timestamp {
  align-self: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-dim);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
  margin-bottom: 0.15rem;
}

/* Message Bubbles */
.wa-bubble-incoming {
  align-self: flex-start;
  background: #202c33;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0 12px 12px 12px;
  padding: 0.75rem 0.95rem;
  color: #e9edef;
  font-size: 0.82rem;
  line-height: 1.5;
  max-width: 88%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  position: relative;
  animation: fadeInMsg 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.wa-bubble-outgoing {
  align-self: flex-end;
  background: #005c4b;
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: 12px 0 12px 12px;
  padding: 0.75rem 0.95rem;
  color: #ffffff;
  font-size: 0.82rem;
  line-height: 1.5;
  max-width: 88%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  position: relative;
  animation: fadeInMsg 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInMsg {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.wa-sender-name {
  font-size: 0.7rem;
  font-weight: 700;
  color: #25d366;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.wa-message-text {
  margin: 0;
  word-break: break-word;
}

.wa-message-text strong {
  color: #fff;
}

.wa-msg-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.3rem;
  font-size: 0.65rem;
  color: #8696a0;
  margin-top: 0.35rem;
}

.wa-bubble-outgoing .wa-msg-meta {
  color: #8696a0;
}

.wa-double-check {
  color: #53bdeb;
  display: inline-flex;
}

/* Interactive Action Buttons inside responses */
.wa-action-grid {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.65rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.wa-action-btn {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #25d366;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
  text-decoration: none;
}

.wa-action-btn:hover {
  background: #25d366;
  color: #060b13;
  transform: translateX(2px);
}

/* Quick Option Chips Container */
.wa-quick-options {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.4rem;
}

.wa-chip-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.1rem;
}

.wa-quick-chip {
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.25);
  color: #e9edef;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wa-quick-chip:hover {
  background: rgba(37, 211, 102, 0.2);
  border-color: #25d366;
  color: #fff;
  transform: translateX(3px);
}

/* Typing Indicator Box */
.wa-typing-box {
  align-self: flex-start;
  background: #202c33;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0 12px 12px 12px;
  padding: 0.6rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  max-width: 140px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  animation: fadeInMsg 0.2s ease;
}

.wa-typing-dots {
  display: flex;
  align-items: center;
  gap: 4px;
}

.wa-typing-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8696a0;
  animation: typingBounce 1.2s infinite ease-in-out;
}

.wa-typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.wa-typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-5px); opacity: 1; background: #25d366; }
}

.wa-typing-text {
  font-size: 0.7rem;
  color: #8696a0;
  font-style: italic;
}

/* Footer Input */
.wa-widget-footer {
  background: #202c33;
  padding: 0.75rem 0.9rem 0.6rem 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.wa-input-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.wa-chat-textarea {
  flex-grow: 1;
  background: #2a3942;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
  color: #fff;
  font-size: 0.82rem;
  font-family: inherit;
  resize: none;
  outline: none;
  max-height: 70px;
  transition: border-color 0.2s ease;
}

.wa-chat-textarea:focus {
  border-color: #25d366;
}

.wa-send-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #25d366;
  color: #060b13;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease;
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.4);
}

.wa-send-btn:hover {
  background: #1ebd5a;
  transform: scale(1.08);
  color: #fff;
}

.wa-footer-branding {
  font-size: 0.68rem;
  color: #8696a0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.wa-footer-branding a {
  color: #25d366;
  text-decoration: none;
  font-weight: 700;
}

.wa-footer-branding a:hover {
  text-decoration: underline;
}

.wa-footer-branding strong {
  color: #25d366;
}

@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-banner-cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Tablet & Mobile Responsiveness */
@media (max-width: 1024px) {
  .hero-title { font-size: 3rem; }
  .hero-metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .sim-stage-content { grid-template-columns: 1fr; }
  .cms-mock-grid { grid-template-columns: 1fr; }
  .hw-grid { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
  .calc-container { grid-template-columns: 1fr; }
  .roadmap-grid { grid-template-columns: repeat(2, 1fr); }
  .models-grid { grid-template-columns: 1fr; }
  .highlight-model-card { transform: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-top-grid { grid-template-columns: 1fr 1fr; }
  .product-brochure-banner {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 2rem;
  }
  .brochure-preview-col {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 15, 24, 0.98);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--border-subtle);
    flex-direction: column;
    padding: 2rem;
    gap: 1.25rem;
    transform: translateY(-150%);
    transition: transform 0.4s ease;
  }

  .nav-links.open { transform: translateY(0); }
  .nav-whatsapp-mobile { display: inline-flex; width: 100%; justify-content: center; margin-top: 0.5rem; }
  .nav-whatsapp-desktop { display: none; }
  .nav-cta-mobile { display: inline-flex; width: 100%; margin-top: 0.5rem; }
  .nav-cta { display: none; }
  .network-badge { display: none; }
  .mobile-toggle-btn { display: block; }
  .hero-title { font-size: 2.25rem; }
  .section-title { font-size: 1.85rem; }
  .hero-metrics-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .ecosystem-layout { grid-template-columns: 1fr; }
  .roadmap-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-top-grid { grid-template-columns: 1fr; }
  .footer-bottom-bar { flex-direction: column; gap: 1rem; text-align: center; }
  
  /* Product Catalog Mobile Optimizations */
  .product-catalog-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .product-segments-strip {
    padding: 1rem;
    gap: 0.75rem;
  }
  
  .segments-tags-row {
    gap: 0.4rem;
  }
  
  .segment-tag {
    font-size: 0.75rem;
    padding: 0.3rem 0.65rem;
  }
  
  .product-filter-bar {
    gap: 0.5rem;
  }
  
  .prod-filter-btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.2rem;
    font-size: 0.85rem;
  }
  
  .hardware-tabs-nav {
    flex-direction: column;
    gap: 0.6rem;
  }
  
  .hw-tab-btn {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1.2rem;
    font-size: 0.85rem;
  }
  
  .hw-grid {
    padding: 1.25rem;
  }
  
  .spec-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }
  
  .product-brochure-banner {
    padding: 1.5rem 1rem;
  }
  
  .brochure-title {
    font-size: 1.4rem;
  }
  
  .brochure-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .brochure-actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .brochure-modal-card {
    padding: 1rem;
    width: 96vw;
  }
  
  .brochure-modal-header {
    flex-direction: column;
    align-items: flex-start;
    padding-right: 2rem;
    gap: 0.75rem;
  }
  
  .brochure-modal-title {
    font-size: 0.95rem;
  }
  
  .brochure-modal-header-actions .btn {
    font-size: 0.78rem;
    padding: 0.4rem 0.8rem;
  }
  
  .brochure-modal-body {
    padding: 0.4rem;
    max-height: calc(80vh - 90px);
  }
  
  .floating-whatsapp-btn {
    bottom: 16px;
    left: 16px;
    width: 52px;
    height: 52px;
  }
  
  .floating-whatsapp-btn svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.95rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .section-tag { font-size: 0.72rem; }
  .section-title { font-size: 1.6rem; }
  .section-desc { font-size: 0.9rem; }
  .product-card { padding: 1.25rem; }
  .prod-name { font-size: 1.15rem; }
}

