/* ==========================================================================
   NAVE LASER LTD — UI Components
   Buttons, Navigation, Cards, Badges, Modals, Accordions, Lightbox, Footer
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Navigation Bar (Glassmorphic & Sticky)
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(7, 9, 14, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition-normal), border-color var(--transition-normal), height var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(7, 9, 14, 0.94);
  border-bottom: 1px solid rgba(0, 255, 157, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  height: 70px;
}

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

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: #fff;
  position: relative;
}

.brand-icon-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  filter: drop-shadow(0 0 10px rgba(0, 255, 157, 0.4));
  transition: transform 0.3s ease, filter 0.3s ease;
  flex-shrink: 0;
}

.brand-logo:hover .brand-icon-img {
  transform: scale(1.08) rotate(4deg);
  filter: drop-shadow(0 0 18px rgba(0, 255, 157, 0.7));
}

.brand-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 255, 157, 0.15) 0%, rgba(0, 240, 255, 0.1) 100%);
  border: 1px solid var(--laser-emerald);
  border-radius: var(--radius-sm);
  color: var(--laser-emerald);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 16px var(--laser-emerald-glow);
}

.brand-icon svg {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 0 4px currentColor);
}

.brand-text span {
  color: var(--laser-emerald);
}

.brand-reg {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: -2px;
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: #cbd5e1;
  position: relative;
  padding: 0.35rem 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--laser-emerald), var(--laser-cyan));
  box-shadow: 0 0 8px var(--laser-emerald);
  transition: width var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-light);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: var(--transition-fast);
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   2. Buttons & Action Links
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
  border: 1px solid transparent;
  text-align: center;
}

.btn-laser-primary {
  background: linear-gradient(135deg, var(--laser-emerald) 0%, #00d984 100%);
  color: #07090e;
  box-shadow: 0 0 20px rgba(0, 255, 157, 0.4);
  font-weight: 700;
}

.btn-laser-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 255, 157, 0.6), 0 4px 12px rgba(0, 0, 0, 0.4);
  color: #000;
}

.btn-laser-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-laser-primary:hover::after {
  transform: translateX(100%);
}

.btn-laser-cyan {
  background: linear-gradient(135deg, var(--laser-cyan) 0%, #00b4d8 100%);
  color: #07090e;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
  font-weight: 700;
}

.btn-laser-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.6);
  color: #000;
}

.btn-laser-magenta {
  background: linear-gradient(135deg, var(--laser-magenta) 0%, #d90479 100%);
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 0, 127, 0.4);
  font-weight: 700;
}

.btn-laser-magenta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 0, 127, 0.6);
}

/* Warm Coral Pill Button (matching reference image) */
.btn-coral {
  background: var(--accent-coral);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 20px var(--accent-coral-glow);
}

.btn-coral:hover {
  background: #eb784f;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(224, 109, 68, 0.6);
  color: #fff;
}

.btn-dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f8fafc;
  font-weight: 600;
}

.btn-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  transform: translateY(-2px);
}

.btn-laser-outline {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-laser-outline:hover {
  border-color: var(--laser-emerald);
  color: var(--laser-emerald);
  box-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
  transform: translateY(-2px);
  background: rgba(0, 255, 157, 0.05);
}

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

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

/* --------------------------------------------------------------------------
   3. Cards & Glass Panels
   -------------------------------------------------------------------------- */
.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
}

.glass-panel:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.glass-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: opacity var(--transition-normal);
}

.glass-panel:hover::before {
  background: linear-gradient(90deg, transparent, var(--laser-emerald), transparent);
  box-shadow: 0 0 10px var(--laser-emerald);
}

/* Service Card */
.service-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 255, 157, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 255, 157, 0.15);
}

.service-card-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  background: rgba(0, 255, 157, 0.08);
  border: 1px solid rgba(0, 255, 157, 0.3);
  color: var(--laser-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition-fast);
}

.service-card-icon svg {
  width: 28px;
  height: 28px;
}

.service-card:hover .service-card-icon {
  background: var(--laser-emerald);
  color: #000;
  box-shadow: 0 0 20px var(--laser-emerald-glow);
  transform: scale(1.05);
}

.service-card h3 {
  margin-bottom: 0.85rem;
  font-size: 1.35rem;
}

.service-card p {
  flex-grow: 1;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.service-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   4. Trust Badges & Metrics Row
   -------------------------------------------------------------------------- */
.trust-badge-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 3.5rem 0;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.4rem 1.8rem;
  background: rgba(13, 17, 26, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  transition: var(--transition-fast);
}

.trust-badge-item:hover {
  border-color: rgba(0, 255, 157, 0.3);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.trust-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: var(--laser-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-badge-icon svg {
  width: 22px;
  height: 22px;
}

.trust-badge-title {
  font-weight: 700;
  font-size: 0.98rem;
  color: #fff;
  margin-bottom: 0.2rem;
}

.trust-badge-sub {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   5. Pricing Cards & Comparison
   -------------------------------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 3rem 2.2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-normal);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.pricing-card.featured {
  border-color: var(--laser-emerald);
  box-shadow: 0 0 35px rgba(0, 255, 157, 0.2);
  background: linear-gradient(180deg, rgba(16, 26, 40, 0.85) 0%, rgba(13, 17, 26, 0.9) 100%);
}

.featured-pill {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--laser-emerald), var(--laser-cyan));
  color: #07090e;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 1.2rem;
  border-radius: var(--radius-full);
  box-shadow: 0 0 15px var(--laser-emerald-glow);
}

.pricing-plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 3rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  margin: 1.5rem 0 0.5rem 0;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.pricing-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #cbd5e1;
}

.pricing-features li svg {
  width: 18px;
  height: 18px;
  color: var(--laser-emerald);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   6. Accordion (FAQ)
   -------------------------------------------------------------------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-item.active {
  border-color: rgba(0, 255, 157, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.faq-trigger {
  width: 100%;
  padding: 1.6rem 2rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-normal), background var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: rgba(0, 255, 157, 0.15);
  color: var(--laser-emerald);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 2rem;
}

.faq-item.active .faq-body {
  padding: 0 2rem 1.8rem 2rem;
}

.faq-body p {
  margin-bottom: 0;
  font-size: 0.98rem;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   7. Forms & Inputs
   -------------------------------------------------------------------------- */
.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.25rem;
  background: rgba(16, 22, 36, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--laser-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
  background: rgba(22, 30, 48, 0.95);
}

textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

/* --------------------------------------------------------------------------
   8. Fullscreen Gallery Lightbox Modal
   -------------------------------------------------------------------------- */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 6, 10, 0.95);
  backdrop-filter: blur(25px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  padding: 2rem;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img-wrapper {
  position: relative;
  max-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 255, 157, 0.3);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
}

.lightbox-img-wrapper img {
  max-height: 75vh;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox-caption {
  margin-top: 1.2rem;
  text-align: center;
}

.lightbox-caption h4 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.lightbox-caption p {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--laser-emerald);
  margin-bottom: 0;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-light);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--laser-magenta);
  border-color: var(--laser-magenta);
  box-shadow: 0 0 15px var(--laser-magenta);
  transform: rotate(90deg);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(13, 17, 26, 0.8);
  border: 1px solid var(--border-light);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }

.lightbox-nav-btn:hover {
  border-color: var(--laser-emerald);
  color: var(--laser-emerald);
  box-shadow: 0 0 20px var(--laser-emerald-glow);
}

/* --------------------------------------------------------------------------
   9. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: #04060a;
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2rem 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--laser-emerald), var(--laser-cyan), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  margin: 1.2rem 0;
  font-size: 0.95rem;
  max-width: 340px;
}

.footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 1.4rem;
  color: #fff;
  letter-spacing: 0.02em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--laser-emerald);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--laser-emerald);
  flex-shrink: 0;
  margin-top: 3px;
}

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

.footer-reg-pill {
  font-family: var(--font-mono);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
}

/* --------------------------------------------------------------------------
   10. Toast Notification
   -------------------------------------------------------------------------- */
.toast-notice {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: rgba(13, 17, 26, 0.95);
  border: 1px solid var(--laser-emerald);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px var(--laser-emerald-glow);
  padding: 1.2rem 1.8rem;
  border-radius: var(--radius-md);
  color: #fff;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

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

/* --------------------------------------------------------------------------
   Responsive Breakpoints for Components
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .site-header {
    height: 70px;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    background: rgba(7, 9, 14, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem 3rem 1.5rem;
    gap: 0.8rem;
    border-bottom: 1px solid rgba(0, 255, 157, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
  }

  .nav-link:hover,
  .nav-link.active {
    background: rgba(0, 255, 157, 0.08);
    color: var(--laser-emerald);
  }

  .mobile-toggle {
    display: flex;
    width: 44px;
    height: 44px;
  }

  .nav-actions .btn {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .lightbox-modal {
    padding: 1rem;
  }

  .lightbox-img-wrapper {
    max-height: 52vh;
  }

  .lightbox-close {
    top: 15px;
    right: 15px;
    position: fixed;
    width: 44px;
    height: 44px;
    z-index: 10002;
  }

  .lightbox-nav-btn {
    width: 44px;
    height: 44px;
    bottom: 25px;
    top: auto;
    transform: none;
  }

  .lightbox-prev { left: 20px; }
  .lightbox-next { right: 20px; }
}

@media (max-width: 480px) {
  .brand-logo {
    font-size: 1.15rem;
    gap: 0.65rem;
  }

  .brand-icon {
    width: 34px;
    height: 34px;
  }

  .brand-reg {
    font-size: 0.6rem;
  }

  .trust-badge-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2rem 0;
  }

  .trust-badge-item {
    padding: 1.1rem 1.2rem;
  }

  .service-card {
    padding: 2rem 1.4rem;
  }

  .pricing-card {
    padding: 2.4rem 1.4rem;
  }

  .faq-trigger {
    padding: 1.2rem 1.2rem;
    font-size: 1.02rem;
  }

  .faq-body {
    padding: 0 1.2rem;
  }

  .faq-item.active .faq-body {
    padding: 0 1.2rem 1.4rem 1.2rem;
  }
}
