/* ----------------------------------------------------
   BenTech Solutions - Premium Design System
   Impeccable Polish + Delight Pass
   ---------------------------------------------------- */

:root {
  /* Color Tokens — Tinted Midnight Slate + Emerald */
  --bg-main: #050a15;
  --bg-secondary: #0a1124;
  --bg-card: #0d1629;
  --bg-card-hover: #111e3a;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-emerald: rgba(0, 200, 117, 0.25);

  --primary: #00c875;
  --primary-light: #33d491;
  --primary-dark: #009959;
  --primary-glow: rgba(0, 200, 117, 0.25);

  --whatsapp-green: #25D366;
  --whatsapp-dark: #128C7E;

  --accent-danger: #ef4444;
  --accent-danger-glow: rgba(239, 68, 68, 0.25);

  --text-main: #e8edf5;
  --text-muted: #8896ab;
  --text-subtle: #576b83;

  /* Typography */
  --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --measure-prose: 65ch;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-normal: 0.3s var(--ease-out);

  /* Shadows — subtle, no glow excess */
  --shadow-card: 0 8px 24px -8px rgba(0, 0, 0, 0.5);
}

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

/* Custom Scrollbar — Thin emerald track */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb {
  background: rgba(0, 200, 117, 0.3);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(0, 200, 117, 0.5); }
html { scrollbar-width: thin; scrollbar-color: rgba(0, 200, 117, 0.3) var(--bg-main); }

/* Selection color */
::selection {
  background: rgba(0, 200, 117, 0.25);
  color: #fff;
}

/* Lucide Icon Sizing */
.icon-xs { width: 14px; height: 14px; }
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 20px; height: 20px; }
.icon-lg { width: 28px; height: 28px; color: var(--primary); }
.icon-badge { width: 16px; height: 16px; color: var(--primary); }
.icon-star { color: #f59e0b; }
.icon-star-fill { width: 16px; height: 16px; color: #f59e0b; fill: #f59e0b; }

/* Scroll Reveal — elements start hidden, anime.js animates them in */
.reveal { opacity: 0; transform: translateY(20px); }
.reveal.revealed { opacity: 1; transform: translateY(0); }

html {
  scroll-behavior: smooth;
  font-family: var(--font-family);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  padding-bottom: 70px;
  position: relative;
}

/* Subtle noise grain overlay — adds premium texture */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@media (min-width: 769px) {
  body { padding-bottom: 0; }
}

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

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

/* Layout */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Typography — Refined scale, lighter weights */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
  text-wrap: balance;
}

h2 { font-weight: 600; }

.gradient-text {
  background: linear-gradient(135deg, #00C875 0%, #38BDF8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header { margin-bottom: 3rem; }
.section-title { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 0.5rem; }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: var(--measure-prose); margin: 0 auto; text-wrap: pretty; }
.text-center { text-align: center; }

/* Buttons — Quieter, no heavy glows */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), transform 0.1s ease;
}

/* Satisfying button press */
.btn:active {
  transform: translateY(1px);
}

/* Focus ring for accessibility */
.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.btn.rounded-full { border-radius: 9999px; }
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }

.btn-emerald {
  background-color: var(--primary);
  color: #041009;
}

.btn-emerald:hover {
  background-color: var(--primary-light);
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #20ba5a 0%, #0e786b 100%);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-outline {
  background: rgba(13, 22, 41, 0.8);
  border-color: var(--border-subtle);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(0, 200, 117, 0.08);
}

.btn-icon {
  width: 1.1em;
  height: 1.1em;
}

/* Pulse Dot — Subtler */
.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--primary);
  animation: pulseAnimation 3s infinite ease-in-out;
}

@keyframes pulseAnimation {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 200, 117, 0.5); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 6px rgba(0, 200, 117, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 200, 117, 0); }
}

/* Top Bar — Clean, minimal */
.top-bar {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.82rem;
  padding: 0.4rem 0;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.live-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
}

.live-status strong { color: var(--text-main); }

.top-contact {
  display: flex;
  align-items: center;
}

.top-phone-link {
  color: var(--primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: opacity var(--transition-fast);
}

.top-phone-link:hover { opacity: 0.8; }
.icon-phone { width: 0.9em; height: 0.9em; }

/* Header — Clean, no blur effects */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: rgba(5, 10, 21, 0.95);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.4rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo .logo-img {
  height: 72px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  gap: 1.75rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.main-nav a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--primary);
  transition: width 0.3s var(--ease-out);
}

.main-nav a:hover { color: var(--primary); }
.main-nav a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background-color: var(--text-main);
  transition: transform 0.3s var(--ease-out), opacity 0.2s ease;
  transform-origin: center;
}

/* Hamburger → X animation */
.mobile-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* LAMP HERO — Refined, less intense */
.lamp-hero-section {
  position: relative;
  z-index: 0;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--bg-main);
  padding: 5rem 0 6rem;
}

.lamp-container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 340px;
  display: flex;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
}

.main-glow-orb {
  position: absolute;
  top: 10px;
  width: 380px;
  height: 120px;
  background: rgba(0, 200, 117, 0.35);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.7;
  z-index: 40;
}

.lamp-light-core {
  position: absolute;
  top: 0;
  width: 220px;
  height: 110px;
  background: rgba(0, 200, 117, 0.5);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 30;
  animation: lampPulse 5s infinite ease-in-out;
}

@keyframes lampPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0.8; }
}

.lamp-top-line {
  position: absolute;
  top: 16px;
  width: 480px;
  height: 1px;
  background: rgba(0, 200, 117, 0.6);
  box-shadow: 0 0 15px rgba(0, 200, 117, 0.5);
  z-index: 50;
}

.conic-cone {
  position: absolute;
  top: 16px;
  width: 480px;
  height: 200px;
  z-index: 20;
}

.cone-left {
  right: 50%;
  background-image: conic-gradient(from 70deg at 100% 0%, rgba(0, 200, 117, 0.3) 0%, transparent 60%);
  mask-image: linear-gradient(to bottom, #000 50%, transparent 100%);
}

.cone-right {
  left: 50%;
  background-image: conic-gradient(from 290deg at 0% 0%, transparent 40%, rgba(0, 200, 117, 0.3) 100%);
  mask-image: linear-gradient(to bottom, #000 50%, transparent 100%);
}

.lamp-hero-content {
  position: relative;
  z-index: 60;
}

.lamp-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.lamp-hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-muted);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  text-wrap: pretty;
}

.lamp-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Portrait — Cleaner, no heavy glow rings */
.lamp-portrait-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
}

.lamp-portrait-circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary);
  box-shadow: 0 0 40px rgba(0, 200, 117, 0.25);
  background: var(--bg-card);
  position: relative;
}

.yassir-head-crop {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 26%;
}

.floating-badge {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border-emerald);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-card);
  text-align: left;
}

.badge-lamp-name { top: 10px; left: -30px; }
.badge-lamp-speed { top: 50px; right: -30px; }
.badge-lamp-reviews { bottom: -12px; left: 50%; transform: translateX(-50%); white-space: nowrap; }

.badge-subtext { display: block; font-size: 0.7rem; color: var(--text-muted); }
.badge-lamp-name .badge-subtext { color: var(--primary); }
.badge-lamp-reviews .star-rating { color: #f59e0b; }

/* Emergency Selector */
.emergency-selector-section {
  padding: 5rem 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.emergency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.emergency-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.emergency-card:hover {
  border-color: var(--border-emerald);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -12px rgba(0, 200, 117, 0.15);
}

.emergency-card.danger-accent {
  border-color: rgba(239, 68, 68, 0.3);
}

.emergency-card.danger-accent:hover {
  border-color: var(--accent-danger);
}

.emergency-icon-wrap {
  width: 40px;
  height: 40px;
  background: rgba(0, 200, 117, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.danger-accent .emergency-icon-wrap {
  background: rgba(239, 68, 68, 0.08);
  color: var(--accent-danger);
}

.emergency-icon-wrap svg { width: 22px; height: 22px; }

.emergency-card-info h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.25rem; }
.emergency-card-info p { font-size: 0.85rem; color: var(--text-muted); }

.btn-emergency-action {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transition-fast);
}

.emergency-card:hover .btn-emergency-action { gap: 0.5rem; }

.danger-accent .btn-emergency-action { color: var(--accent-danger); }

/* Bento Grid */
.services-section { padding: 5rem 0; }

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

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.bento-card:hover {
  border-color: var(--border-emerald);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px -8px rgba(0, 200, 117, 0.1);
}

.bento-hero-card {
  grid-column: span 2;
  border-color: var(--border-emerald);
}

.bento-badge {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  background: rgba(0, 200, 117, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.bento-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 200, 117, 0.06);
  border-radius: 8px;
  padding: 6px;
}

.bento-feature-list { list-style: none; margin: 0.5rem 0; }
.bento-feature-list li {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  padding-left: 1.1rem;
  position: relative;
}

.bento-feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* About */
.about-section {
  padding: 5rem 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-img-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-emerald);
}

.about-person-img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  object-position: 50% 25%;
}

.about-experience-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(5, 10, 21, 0.9);
  border: 1px solid var(--border-emerald);
  padding: 0.6rem 1rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}

.exp-years { font-size: 1.3rem; font-weight: 700; color: var(--primary); }
.exp-text { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); }
.lead-text { font-size: 1.1rem; color: var(--text-main); margin-bottom: 0.75rem; }

.value-bullets { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.value-item { display: flex; gap: 0.75rem; align-items: flex-start; }
.value-icon { font-size: 1.25rem; background: var(--bg-card); padding: 0.45rem; border-radius: 8px; border: 1px solid var(--border-subtle); }
.value-item h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.15rem; }
.value-item p { font-size: 0.9rem; color: var(--text-muted); }

/* Process */
.process-section { padding: 5rem 0; }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 1.5rem;
  border-left: 2px solid transparent;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}
.step-card:hover {
  border-left-color: var(--primary);
  transform: translateY(-2px);
}
.step-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.35rem; }
.step-card p { font-size: 0.9rem; color: var(--text-muted); }
.step-num { font-size: 2rem; font-weight: 700; color: rgba(0, 200, 117, 0.15); margin-bottom: 0.5rem; transition: color var(--transition-fast); }
.step-card:hover .step-num { color: rgba(0, 200, 117, 0.35); }

/* Request Section */
.request-section { padding: 5rem 0; background-color: var(--bg-secondary); border-top: 1px solid var(--border-subtle); }
.request-box-wrapper { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 16px; padding: 2.5rem; }
.request-header { margin-bottom: 1.5rem; }
.request-header h2 { margin-bottom: 0.4rem; }
.request-header p { color: var(--text-muted); font-size: 0.95rem; }

.form-tabs { display: flex; gap: 0.75rem; margin-bottom: 2rem; border-bottom: 1px solid var(--border-subtle); padding-bottom: 0.75rem; }
.tab-btn { flex: 1; padding: 0.8rem; background: transparent; border: 1px solid var(--border-subtle); border-radius: 8px; color: var(--text-muted); font-family: inherit; font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: all var(--transition-fast); }
.tab-btn.active { background-color: var(--primary); color: #041009; border-color: var(--primary); }
.tab-content { display: none; }
.tab-content.active { display: block; }

.emergency-dispatch-banner {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 10px;
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.dispatch-info h3 { color: #fca5a5; font-size: 1rem; font-weight: 600; margin-bottom: 0.15rem; }
.dispatch-info p { font-size: 0.875rem; color: var(--text-muted); }
.dispatch-banner-actions { display: flex; gap: 0.5rem; }

.contact-form .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.25rem; }
.form-group.full-width { grid-column: span 2; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 0.3rem; color: var(--text-main); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: var(--bg-main);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 0.65rem 0.9rem;
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 200, 117, 0.1);
}
.form-submit-btn { width: 100%; }

/* Reviews */
.reviews-section { padding: 5rem 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}
.review-card:hover {
  border-color: var(--border-emerald);
  transform: translateY(-2px);
}
/* Decorative opening quote */
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(0, 200, 117, 0.08);
  font-family: Georgia, serif;
  pointer-events: none;
}
.review-stars { display: flex; gap: 2px; }
.review-text { font-style: italic; font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.review-author { font-size: 0.82rem; color: var(--text-subtle); margin-top: auto; }

/* FAQ */
.faq-section { padding: 5rem 0; background-color: var(--bg-secondary); }
.faq-accordion { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}
.faq-item:hover { border-color: rgba(255, 255, 255, 0.12); }
.faq-item[open] { border-color: var(--border-emerald); }
.faq-question {
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition-fast);
}
.faq-item[open] .faq-question { color: var(--primary); }
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 500;
  transition: transform 0.3s var(--ease-out);
}
.faq-item[open] .faq-question::after {
  content: '−';
  transform: rotate(90deg);
}
.faq-answer {
  padding: 0 1.25rem 1.1rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer { background-color: #030610; border-top: 1px solid var(--border-subtle); padding: 3.5rem 0 1.5rem; font-size: 0.85rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-logo { height: 56px; margin-bottom: 0.75rem; }
.footer-desc { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; }
.footer-col h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.4rem; }
.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color var(--transition-fast);
  position: relative;
  display: inline-block;
}
.footer-col ul li a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s var(--ease-out);
}
.footer-col ul li a:hover { color: var(--primary); }
.footer-col ul li a:hover::after { width: 100%; }
.footer-phone { color: var(--primary); font-size: 1rem; font-weight: 600; }
.footer-wa-link { color: var(--whatsapp-green); font-size: 0.95rem; font-weight: 600; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; border-top: 1px solid var(--border-subtle); color: var(--text-subtle); font-size: 0.8rem; }
.tomcool-credit a { color: var(--primary); font-weight: 600; }

/* Mobile Sticky Bar */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0.6rem 0.75rem;
  background: rgba(5, 10, 21, 0.95);
  border-top: 1px solid var(--border-emerald);
  display: flex;
  gap: 0.5rem;
}
.btn-sticky { flex: 1; padding: 0.7rem; font-size: 0.85rem; }

@media (min-width: 769px) {
  .mobile-sticky-bar { display: none; }
}

/* Responsive */
@media (max-width: 992px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-hero-card { grid-column: span 1; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .top-bar-content { justify-content: center; text-align: center; }
  .top-bar .top-contact { display: none; }
  .top-bar .live-status { font-size: 0.75rem; }

  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-secondary);
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-subtle);
    gap: 0.75rem;
    z-index: 200;
  }
  .mobile-toggle { display: flex; }
  .brand-logo .logo-img { height: 52px; }

  /* Hide duplicate CTAs on mobile — sticky bar handles call + WhatsApp */
  .header-actions .btn-emerald { display: none; }
  .lamp-hero-actions .btn-emerald { display: none; }
  .dispatch-banner-actions { display: none; }

  .contact-form .form-grid { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: span 1; }
  .request-box-wrapper { padding: 1.25rem; }
  .form-tabs { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 0.4rem; text-align: center; }

  .lamp-portrait-circle { width: 220px; height: 220px; }
  .floating-badge { font-size: 0.7rem; padding: 0.3rem 0.65rem; }
  .badge-lamp-name { left: -8px; }
  .badge-lamp-speed { right: -8px; }
  .hidden-mobile { display: none; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
