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

:root {
  --cyan-glow: #00f0ff;
  --emerald-glow: #00ff88;
  --gold-glow: #fbbf24;
  --blue-accent: #38bdf8;
  --bg-dark: #04070c;
  --bg-card: rgba(8, 14, 22, 0.94);
  --border-cyan: rgba(0, 240, 255, 0.35);
  --border-emerald: rgba(0, 255, 136, 0.35);
  --font-heading: 'Orbitron', 'Outfit', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --text-primary: #ffffff;
  --text-secondary: #e2e8f0;
  --text-muted: #94a3b8;
  --text-on-accent: #ffffff;
  --text-on-dark: #ffffff;
  --bg-surface: rgba(4, 8, 14, 0.95);
  --bg-footer: #03050a;
  --bg-navbar: rgba(4, 8, 14, 0.75);
  --bg-input: rgba(0, 0, 0, 0.4);
  --bg-backdrop: rgba(2, 4, 6, 0.85);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 500;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  position: relative;
  background: radial-gradient(circle at 50% 10%, #0c1826 0%, #05080e 65%, #020305 100%);
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
  -webkit-text-size-adjust: 100%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-track {
  background: #06090f;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--cyan-glow), var(--emerald-glow));
  border-radius: 4px;
}

/* Custom Cyber Vector Icons */
.cyber-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  flex-shrink: 0;
  transition: transform 0.25s ease, filter 0.25s ease;
}
.cyber-icon svg {
  display: block;
}
.cyber-icon.cyan {
  color: var(--cyan-glow);
  filter: drop-shadow(0 0 6px rgba(0, 240, 255, 0.65));
}
.cyber-icon.emerald {
  color: var(--emerald-glow);
  filter: drop-shadow(0 0 6px rgba(0, 255, 136, 0.65));
}
.cyber-icon.gold {
  color: var(--gold-glow);
  filter: drop-shadow(0 0 6px rgba(251, 191, 36, 0.65));
}
.option-btn .cyber-icon {
  margin-bottom: 2px;
}
.option-btn:hover .cyber-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.9));
}
.install-card .cyber-icon {
  margin-bottom: 6px;
}
.install-card:hover .cyber-icon {
  transform: scale(1.12);
  filter: drop-shadow(0 0 12px rgba(0, 255, 136, 0.9));
}

/* Fixed 3D WebGL Canvas Layer */
#webgl-pcb-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
}

/* High-Tech Circuit Overlay Grid */
.circuit-bg-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: 
    linear-gradient(rgba(0, 240, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 2;
}

/* Content Wrapper */
.content-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  overflow-x: hidden;
}

/* Navbar HUD */
.ep-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 35px;
  background: rgba(4, 8, 14, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 240, 255, 0.25);
  z-index: 100;
  box-sizing: border-box;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.original-brand-logo {
  height: 46px;
  max-height: 50px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 14px rgba(0, 240, 255, 0.5));
  transition: transform 0.25s ease;
}
.brand-wrapper:hover .original-brand-logo {
  transform: scale(1.02);
}

.ep-nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}

.ep-nav-links a {
  text-decoration: none;
  color: var(--text-primary);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
}
.ep-nav-links a:hover {
  color: var(--cyan-glow);
  text-shadow: 0 0 12px rgba(0, 240, 255, 0.8);
}

.ep-nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-quick-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 136, 0.35);
  transition: all 0.25s ease;
  white-space: nowrap;
}
.phone-quick-link:hover {
  border-color: var(--emerald-glow);
  color: var(--emerald-glow);
  box-shadow: 0 0 18px rgba(0, 255, 136, 0.5);
}

.live-indicator-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--emerald-glow);
  box-shadow: 0 0 10px var(--emerald-glow);
  animation: pulseDot 1.5s infinite;
  flex-shrink: 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
body.is-open .live-indicator-dot,
.status-open .live-indicator-dot,
.live-indicator-dot.green {
  background: var(--emerald-glow) !important;
  box-shadow: 0 0 10px var(--emerald-glow) !important;
  animation: pulseDot 1.5s infinite !important;
}
body.is-closed .live-indicator-dot,
.status-closed .live-indicator-dot,
.live-indicator-dot.red {
  background: #ef4444 !important;
  box-shadow: 0 0 12px #ef4444 !important;
  animation: pulseDotRed 1.5s infinite !important;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 10px var(--emerald-glow); }
  50% { opacity: 0.35; transform: scale(0.8); box-shadow: 0 0 4px var(--emerald-glow); }
}
@keyframes pulseDotRed {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 12px #ef4444; }
  50% { opacity: 0.35; transform: scale(0.8); box-shadow: 0 0 4px #ef4444; }
}

/* Menu Button */
.original-menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.4);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  z-index: 120;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.original-menu-btn:hover {
  background: rgba(0, 240, 255, 0.2);
  border-color: var(--cyan-glow);
  color: var(--cyan-glow);
}

.bars-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 18px;
  height: 12px;
}
.bars-icon span {
  display: block;
  width: 100%;
  height: 2.2px;
  background-color: var(--cyan-glow);
  border-radius: 2px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.original-menu-btn.open .bars-icon span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
  background-color: var(--emerald-glow);
}
.original-menu-btn.open .bars-icon span:nth-child(2) {
  opacity: 0;
}
.original-menu-btn.open .bars-icon span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
  background-color: var(--emerald-glow);
}

.original-menu-btn .menu-btn-text-close { display: none; }
.original-menu-btn.open .menu-btn-text-open { display: none; }
.original-menu-btn.open .menu-btn-text-close { display: inline; color: var(--emerald-glow); }

/* Mobile Drawer */
.ep-mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 88%;
  max-width: 360px;
  height: 100vh;
  background: rgba(5, 9, 15, 0.99);
  backdrop-filter: blur(25px);
  border-left: 1px solid rgba(0, 240, 255, 0.35);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.95);
  z-index: 110;
  padding: 20px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
  overflow-y: auto;
}
.ep-mobile-drawer.open { right: 0; }

.drawer-header-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.drawer-back-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 240, 255, 0.12);
  border: 1px solid rgba(0, 240, 255, 0.5);
  color: var(--cyan-glow);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.drawer-back-action-btn:hover {
  background: rgba(0, 240, 255, 0.25);
  color: var(--text-primary);
}

.drawer-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 10px;
}

.drawer-brand-logo {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg-backdrop);
  backdrop-filter: blur(8px);
  z-index: 105;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }

.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.drawer-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 700;
  padding: 11px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}
.drawer-links a:hover {
  color: var(--cyan-glow);
  background: rgba(0, 240, 255, 0.16);
  border-color: var(--cyan-glow);
}

.drawer-footer-box {
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 14px;
}

/* High-Tech Buttons */
.tech-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #00f0ff, #0077ff);
  color: #030712;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.45);
  transition: all 0.25s ease;
  max-width: 100%;
  white-space: normal;
  text-align: center;
  word-break: break-word;
}
.tech-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(0, 240, 255, 0.75);
}

.tech-btn.emerald {
  background: linear-gradient(135deg, #00ff88, #059669);
  color: #030712;
  box-shadow: 0 0 18px rgba(0, 255, 136, 0.45);
}
.tech-btn.emerald:hover {
  box-shadow: 0 0 28px rgba(0, 255, 136, 0.8);
}

.tech-btn.outline {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.5);
  color: var(--text-primary);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.2);
}
.tech-btn.outline:hover {
  background: rgba(0, 240, 255, 0.18);
  border-color: var(--cyan-glow);
  box-shadow: 0 0 22px rgba(0, 240, 255, 0.45);
}

/* Sections Shared */
section {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 38px 6%;
  box-sizing: border-box;
  width: 100%;
}

#hero {
  min-height: auto;
  padding: 95px 6% 28px 6%;
}

.section-box {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.section-tagline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--cyan-glow);
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(0, 240, 255, 0.12);
  border: 1px solid rgba(0, 240, 255, 0.4);
  margin-bottom: 10px;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4.5vw, 2.5rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-primary);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  margin-bottom: 14px;
  text-transform: uppercase;
  word-break: break-word;
}

/* Live Opening Status Badge */
.live-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.84rem;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
  transition: all 0.3s ease;
  max-width: 100%;
  text-align: center;
  line-height: 1.4;
}

.live-status-badge.status-open {
  background: rgba(0, 255, 136, 0.15);
  border: 1px solid var(--emerald-glow);
  color: var(--text-primary);
  box-shadow: 0 0 18px rgba(0, 255, 136, 0.3);
}
.live-status-badge.status-open .status-label {
  color: var(--emerald-glow);
  letter-spacing: 0.6px;
}

.live-status-badge.status-closed {
  background: rgba(239, 68, 68, 0.16);
  border: 1px solid rgba(239, 68, 68, 0.7);
  color: var(--text-primary);
  box-shadow: 0 0 18px rgba(239, 68, 68, 0.3);
}
.live-status-badge.status-closed .status-label {
  color: #fca5a5;
  letter-spacing: 0.6px;
}

.live-status-badge .status-hours {
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* HERO */
.hero-wrapper {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: center;
}

.hero-main-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.7vw, 2.75rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 14px;
  word-break: break-word;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
}
.cyan-gradient-text {
  background: linear-gradient(135deg, #00f0ff 0%, #00ff88 60%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 24px rgba(0, 240, 255, 0.4));
}

.hero-lead-quote {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--text-secondary);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 14px;
  border-left: 3.5px solid var(--cyan-glow);
  padding: 10px 16px;
  background: rgba(0, 240, 255, 0.05);
  border-radius: 0 8px 8px 0;
}

.hero-desc {
  font-size: 1.02rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 600px;
}
.hero-desc strong {
  color: var(--text-primary);
  font-weight: 800;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.metric-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 14px 16px;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.metric-card.interactive {
  cursor: pointer;
}
.metric-card.interactive:hover {
  border-color: var(--cyan-glow);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 240, 255, 0.3);
}
.metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3.5px;
  height: 100%;
  background: var(--cyan-glow);
}
.metric-val {
  font-family: var(--font-heading);
  font-size: 1.32rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 3px;
}
.metric-lbl {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}


/* Hero HUD Card (Desktop Anchor Panel) */
.hero-hud-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-hud-card {
  background: linear-gradient(135deg, rgba(10, 18, 28, 0.95) 0%, rgba(5, 10, 16, 0.98) 100%);
  border: 1px solid rgba(0, 240, 255, 0.35);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.15), 0 20px 40px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.hero-hud-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan-glow), var(--emerald-glow), transparent);
}

.hud-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hud-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.hud-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px 14px;
  transition: all 0.25s ease;
}
.hud-feature-item:hover {
  border-color: var(--cyan-glow);
  background: rgba(0, 240, 255, 0.08);
  transform: translateX(4px);
}

.hud-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hud-feature-icon.cyan {
  background: rgba(0, 240, 255, 0.15);
  color: var(--cyan-glow);
  border: 1px solid rgba(0, 240, 255, 0.4);
}
.hud-feature-icon.emerald {
  background: rgba(0, 255, 136, 0.15);
  color: var(--emerald-glow);
  border: 1px solid rgba(0, 255, 136, 0.4);
}
.hud-feature-icon.gold {
  background: rgba(251, 191, 36, 0.15);
  color: var(--gold-glow);
  border: 1px solid rgba(251, 191, 36, 0.4);
}

.hud-direct-call-box {
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid var(--emerald-glow);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.hud-phone-link {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--text-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
}
.hud-phone-link:hover {
  color: var(--emerald-glow);
  text-shadow: 0 0 12px rgba(0, 255, 136, 0.8);
}

/* Original Quote Highlight Card */
.original-quote-card {
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.4);
  border-radius: 14px;
  padding: 20px 24px;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
  text-align: left;
  margin-bottom: 20px;
}

/* SERVICES SECTION */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.service-box {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(18px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.service-box:hover {
  transform: translateY(-4px);
  border-color: var(--cyan-glow);
  box-shadow: 0 12px 32px rgba(0, 240, 255, 0.25);
}

.service-img-wrap {
  width: 100%;
  height: 175px;
  overflow: hidden;
  position: relative;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-box:hover .service-img-wrap img {
  transform: scale(1.05);
}

.service-content {
  padding: 20px 22px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.service-text {
  font-size: 0.96rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-tag {
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-mono);
  padding: 4px 10px;
  border-radius: 14px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.35);
  color: #38bdf8;
}

/* Brands Grid */
.brands-container {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 20px 24px;
  margin-top: 24px;
  text-align: center;
}
.brands-title {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.brands-pill-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.brand-pill {
  padding: 7px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: all 0.2s ease;
}
.brand-pill:hover {
  border-color: var(--cyan-glow);
  background: rgba(0, 240, 255, 0.2);
  color: var(--cyan-glow);
}

/* Installation Grid */
.install-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.install-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 18px;
  backdrop-filter: blur(16px);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.install-card:hover {
  border-color: var(--emerald-glow);
  transform: translateY(-3px);
}
.install-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.install-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.install-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.55;
}

/* SECTION: TRUCS ET ASTUCES */
#trucs-astuces {
  background: linear-gradient(180deg, transparent 0%, rgba(10, 22, 35, 0.7) 50%, transparent 100%);
}

.astuces-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.astuce-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 22px 24px;
  backdrop-filter: blur(18px);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.astuce-card:hover {
  border-color: var(--cyan-glow);
  transform: translateY(-3px);
}

.astuce-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.astuce-number {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 240, 255, 0.18);
  border: 1px solid var(--cyan-glow);
  color: var(--cyan-glow);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.astuce-title {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--text-primary);
}
.astuce-body {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 14px;
  flex-grow: 1;
}
.astuce-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cyan-glow);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s ease;
}
.astuce-link:hover {
  color: var(--emerald-glow);
  text-decoration: underline;
}

/* YOUTUBE EMBED PLAYER */
.ep-video-container {
  margin-top: 16px;
  background: var(--bg-surface);
  border: 1px solid rgba(0, 240, 255, 0.4);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.15);
  overflow: hidden;
  width: 100%;
}

.ep-video-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.ep-video-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ep-video-responsive {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #000;
}

.ep-video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.ep-video-caption {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 600;
  line-height: 1.45;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* INTERACTIVE ESTIMATOR */
#estimator {
  background: radial-gradient(circle at center, rgba(16, 29, 46, 0.8) 0%, transparent 80%);
}

.estimator-card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 240, 255, 0.35);
  border-radius: 20px;
  padding: 32px 28px;
  backdrop-filter: blur(20px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6);
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}

.step-label {
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--cyan-glow);
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 900;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}

.option-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 14px 10px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  word-break: break-word;
}
.option-btn:hover,
.option-btn.active {
  border-color: var(--cyan-glow);
  background: rgba(0, 240, 255, 0.18);
  color: var(--text-primary);
  box-shadow: 0 4px 16px rgba(0, 240, 255, 0.35);
}
.option-icon {
  font-size: 1.4rem;
}

.estimate-result-box {
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid var(--emerald-glow);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}
.estimate-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--emerald-glow);
}

/* ANYDESK DIRECT DOWNLOAD & SUPPORT CARD */
#support {
  background: linear-gradient(180deg, transparent 0%, rgba(10, 20, 32, 0.8) 50%, transparent 100%);
}

.anydesk-main-box {
  background: linear-gradient(135deg, rgba(16, 26, 42, 0.95) 0%, rgba(8, 14, 24, 0.98) 100%);
  border: 1px solid rgba(0, 240, 255, 0.4);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.15);
  margin: 0 auto;
  width: 100%;
  max-width: 860px;
  box-sizing: border-box;
  overflow: hidden;
}

.anydesk-action-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
}

.anydesk-download-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 25px rgba(239, 68, 68, 0.5);
  transition: all 0.25s ease;
  max-width: 100%;
  text-align: center;
  word-break: break-word;
  white-space: normal;
}
.anydesk-download-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(239, 68, 68, 0.8);
  background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
  color: var(--text-primary);
}

.anydesk-step-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 12px;
  word-break: break-word;
}
.anydesk-step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--cyan-glow);
  color: #000;
  font-weight: 900;
  font-family: var(--font-mono);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  flex-shrink: 0;
}

/* CONTACT & FOOTER */
#contact {
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 28px 26px;
  backdrop-filter: blur(18px);
}

.form-group {
  margin-bottom: 16px;
}
.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.form-input,
.form-textarea {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  outline: none;
  transition: border-color 0.2s ease;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--cyan-glow);
  box-shadow: 0 0 14px rgba(0, 240, 255, 0.4);
}

footer {
  background: var(--bg-footer);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 32px 6%;
  color: #94a3b8;
  font-size: 0.88rem;
  font-weight: 500;
}

/* =========================================================
   RESPONSIVENESS & MOBILE OPTIMIZATION
   ========================================================= */
@media (max-width: 1180px) {
  .ep-navbar {
    padding: 0 20px;
  }
  .ep-nav-links {
    display: none;
  }
}

@media (max-width: 900px) {
  section {
    padding: 30px 5%;
  }
  #hero {
    padding: 85px 5% 24px 5%;
  }
  .hero-wrapper,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .services-grid,
  .install-grid,
  .astuces-steps-grid {
    grid-template-columns: 1fr;
  }
  .anydesk-action-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }
  .anydesk-download-btn-primary {
    width: 100%;
  }
}

@media (max-width: 600px) {
  section {
    padding: 22px 14px;
  }
  #hero {
    padding: 76px 14px 18px 14px;
  }
  .ep-navbar {
    height: 62px;
    padding: 0 14px;
  }
  .original-brand-logo {
    max-width: 170px;
    height: 36px;
  }
  .phone-quick-link {
    display: none;
  }
  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .tech-btn {
    width: 100%;
  }
  .options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .estimator-card,
  .contact-card,
  .anydesk-main-box {
    padding: 20px 16px;
  }
  .estimate-result-box {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .estimate-result-box .tech-btn {
    width: 100%;
  }
}

/* ============================================================
   LUXE LAYER — Électro-Pod Premium (ajouté par-dessus, ne casse
   rien : le 3D PCB, le menu, l'estimateur et le formulaire restent)
   ============================================================ */

/* ---------- Particules + lueur ---------- */
#luxe-particles {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  width: 100vw; height: 100vh;
}
#luxe-glow {
  position: fixed; top: 0; left: 0;
  width: 440px; height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.06), rgba(0, 255, 136, 0.04) 40%, transparent 70%);
  z-index: 1; pointer-events: none;
  will-change: transform;
}

/* ---------- Glassmorphism poussé sur les cartes ---------- */
.service-box, .contact-card, .metric-card, .hud-card, .original-quote-card {
  background: rgba(8, 14, 22, 0.72) !important;
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border: 1px solid rgba(0, 240, 255, 0.12) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: all 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.service-box:hover, .contact-card:hover, .metric-card:hover {
  border-color: rgba(0, 240, 255, 0.35) !important;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.5), 0 0 26px rgba(0, 240, 255, 0.12);
}

/* ---------- Glow dynamique sur les titres ---------- */
.section-heading {
  text-shadow: 0 0 24px rgba(0, 240, 255, 0.25);
}
.hero-main-title .cyan-gradient-text {
  text-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
}

/* ---------- Boutons : glow au survol ---------- */
.tech-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.tech-btn:hover {
  box-shadow: 0 0 24px rgba(0, 255, 136, 0.3);
  transform: translateY(-2px);
}
.tech-btn::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transition: left 0.5s ease;
}
.tech-btn:hover::after { left: 100%; }

/* ---------- Navbar : verre fumé ---------- */
.ep-navbar {
  background: var(--bg-navbar), 0.75) !important;
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

/* ---------- Brand pills : hover lumineux ---------- */
.brand-pill {
  transition: all 0.25s ease;
}
.brand-pill:hover {
  border-color: rgba(0, 240, 255, 0.5) !important;
  box-shadow: 0 0 14px rgba(0, 240, 255, 0.2);
  transform: translateY(-2px);
}

/* ---------- Performance / accessibilité ---------- */
@media (prefers-reduced-motion: reduce) {
  #luxe-particles, #luxe-glow { display: none; }
}

/* ---------- Contraste renforcé (retour vision) ---------- */
.hero-desc, .service-text, .hud-feature-item p, .contact-card p {
  color: var(--text-secondary) !important;
}
.hero-lead-quote em {
  color: var(--text-secondary) !important;
}
