:root {
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Space Grotesk", sans-serif;
  --font-pixel: "Press Start 2P", cursive;
  --font-mono: "VT323", monospace;
  
  --retro-red: #FF3E3E;
  --retro-cyan: #00F0FF;
  --retro-gold: #FFD700;
  --retro-bg: #0A0A0A;
  --retro-card: #151515;
  --retro-border: #2A2A2A;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--retro-bg);
  color: #FFFFFF;
  font-family: var(--font-sans);
  line-height: 1.6;
  position: relative;
}

body.crt-enabled::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.15) 0px,
    rgba(0, 0, 0, 0.15) 1px,
    transparent 1px,
    transparent 2px
  );
  pointer-events: none;
  z-index: 9999;
}

body.crt-enabled::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
  z-index: 9998;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

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

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.pixel-text {
  font-family: var(--font-pixel);
  font-size: 0.75rem;
  line-height: 1.5;
}

.mono-text {
  font-family: var(--font-mono);
  font-size: 1.25rem;
}

.pixel-corners {
  clip-path: polygon(
    0 4px, 4px 4px, 4px 0,
    calc(100% - 4px) 0, calc(100% - 4px) 4px, 100% 4px,
    100% calc(100% - 4px), calc(100% - 4px) calc(100% - 4px), calc(100% - 4px) 100%,
    4px 100%, 4px calc(100% - 4px), 0 calc(100% - 4px)
  );
}

.glow-red {
  box-shadow: 0 0 20px rgba(255, 62, 62, 0.5), 0 0 40px rgba(255, 62, 62, 0.3), 0 0 60px rgba(255, 62, 62, 0.1);
}

.glow-cyan {
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.5), 0 0 40px rgba(0, 240, 255, 0.3), 0 0 60px rgba(0, 240, 255, 0.1);
}

.glow-gold {
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.3), 0 0 60px rgba(255, 215, 0, 0.1);
}

.text-glow-red {
  text-shadow: 0 0 10px rgba(255, 62, 62, 0.8), 0 0 20px rgba(255, 62, 62, 0.5), 0 0 30px rgba(255, 62, 62, 0.3);
}

.text-glow-cyan {
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.8), 0 0 20px rgba(0, 240, 255, 0.5), 0 0 30px rgba(0, 240, 255, 0.3);
}

.text-glow-gold {
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.3);
}

.crt-overlay {
  position: relative;
  overflow: hidden;
}

.crt-overlay::after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  z-index: 2;
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
}

.crt-scanlines {
  position: relative;
}

.crt-scanlines::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.15) 0px,
    rgba(0, 0, 0, 0.15) 1px,
    transparent 1px,
    transparent 2px
  );
  pointer-events: none;
  z-index: 100;
}

.crt-flicker {
  animation: crt-flicker 0.15s infinite;
}

@keyframes crt-flicker {
  0% { opacity: 0.97; }
  50% { opacity: 1; }
  100% { opacity: 0.98; }
}

.crt-glow {
  position: relative;
}

.crt-glow::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.neon-border-red {
  border: 2px solid var(--retro-red);
  box-shadow: 0 0 10px rgba(255, 62, 62, 0.5), inset 0 0 10px rgba(255, 62, 62, 0.1);
}

.neon-border-cyan {
  border: 2px solid var(--retro-cyan);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.5), inset 0 0 10px rgba(0, 240, 255, 0.1);
}

.neon-border-gold {
  border: 2px solid var(--retro-gold);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5), inset 0 0 10px rgba(255, 215, 0, 0.1);
}

/* Boot Screen */
.boot-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--retro-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.boot-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.boot-content {
  text-align: center;
}

.boot-loader {
  width: 80px;
  height: 80px;
  background: var(--retro-red);
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 1s infinite;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid white;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.boot-progress {
  width: 250px;
  height: 8px;
  background: var(--retro-card);
  border: 1px solid var(--retro-border);
  margin: 1.5rem auto;
  overflow: hidden;
}

.boot-progress-bar {
  height: 100%;
  background: var(--retro-red);
  animation: progress 1.5s ease-in-out forwards;
}

@keyframes progress {
  from { width: 0; }
  to { width: 100%; }
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--retro-border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--retro-red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

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

.nav-links a {
  color: #888;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--retro-cyan);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--retro-cyan);
}

.nav-links a.cart-link {
  display: flex !important;
  align-items: center;
  padding: 0.5rem;
  color: #fff !important;
  transition: color 0.2s;
  visibility: visible !important;
  opacity: 1 !important;
}

.nav-links a.cart-link:hover {
  color: var(--retro-cyan);
}

.btn-primary {
  background: var(--retro-red);
  color: white;
  padding: 0.5rem 1.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.btn-primary:hover {
  background: rgba(255, 62, 62, 0.9);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--retro-cyan);
  color: var(--retro-cyan);
  padding: 0.75rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: rgba(0, 240, 255, 0.1);
}

.mobile-menu-btn {
  display: none;
  background: none;
  color: #888;
  padding: 0.5rem;
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: grayscale(100%) brightness(50%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, var(--retro-bg) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
  max-width: 900px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 62, 62, 0.1);
  border: 1px solid rgba(255, 62, 62, 0.3);
  margin-bottom: 2rem;
}

.status-badge svg {
  width: 16px;
  height: 16px;
  color: var(--retro-red);
  animation: pulse 1s infinite;
}

.status-badge span {
  color: var(--retro-red);
}

.hero h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 2rem;
}

.hero h1 span {
  color: var(--retro-cyan);
}

.hero-description {
  font-size: 1.25rem;
  color: #888;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.hero-stats {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  display: none;
}

@media (min-width: 1024px) {
  .hero-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}

.hero-stats-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-stats-item > div:first-child {
  width: 48px;
  height: 2px;
}

.hero-stats-item:first-child > div:first-child {
  background: var(--retro-cyan);
}

.hero-stats-item:last-child > div:first-child {
  background: var(--retro-red);
}

/* Featured Section */
.featured-section {
  padding: 8rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  flex-direction: column;
  md: flex-row;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 5rem;
  gap: 2rem;
}

.section-title h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title h2 span {
  color: var(--retro-cyan);
}

.section-title p {
  font-size: 1.125rem;
  color: #888;
  max-width: 400px;
}

.view-all-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--retro-cyan);
  font-weight: 700;
  transition: gap 0.2s;
}

.view-all-btn:hover {
  gap: 1rem;
}

.view-all-btn svg {
  width: 20px;
  height: 20px;
}

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

.product-card {
  background: var(--retro-card);
  border: 1px solid var(--retro-border);
  padding: 1.5rem;
  transition: transform 0.2s;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-image {
  position: relative;
  aspect-ratio: 1;
  background: black;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.3s, filter 0.3s;
  filter: grayscale(100%);
}

.product-card:hover .product-image img {
  opacity: 1;
  filter: grayscale(0);
}

.product-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--retro-red);
  color: white;
  padding: 0.25rem 0.75rem;
  font-size: 0.625rem;
  font-weight: 700;
}

.product-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--retro-cyan);
}

.product-price button {
  width: 40px;
  height: 40px;
  background: var(--retro-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.product-price button:hover {
  background: var(--retro-red);
}

.product-price button svg {
  width: 20px;
  height: 20px;
}

/* Services Section */
.services-section {
  padding: 8rem 1.5rem;
  background: rgba(21, 21, 21, 0.5);
  border-top: 1px solid var(--retro-border);
  border-bottom: 1px solid var(--retro-border);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.services-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2rem;
  line-height: 1;
}

.services-content h2 span {
  color: var(--retro-red);
}

.services-content > p {
  font-size: 1.125rem;
  color: #888;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.service-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--retro-bg);
  border: 1px solid var(--retro-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: var(--retro-red);
}

.service-item h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-item p {
  color: #888;
}

.services-image {
  position: relative;
}

.services-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(100%) opacity(0.6);
}

.experience-badge {
  position: absolute;
  top: 2rem;
  right: -1rem;
  background: var(--retro-red);
  padding: 2rem;
  display: none;
}

@media (min-width: 768px) {
  .experience-badge {
    display: block;
  }
}

.experience-badge .pixel-text {
  color: white;
  margin-bottom: 0.5rem;
}

.experience-badge .number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: white;
}

/* CTA Section */
.cta-section {
  padding: 8rem 1.5rem;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.cta-section h2 span {
  color: var(--retro-cyan);
}

.cta-section > p {
  font-size: 1.125rem;
  color: #888;
  margin-bottom: 3rem;
}

.cta-section .btn-outline {
  padding: 1rem 3rem;
  font-size: 1.125rem;
}

/* Products Page */
.page-hero {
  min-height: 100vh;
  padding: 8rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: var(--retro-bg);
}

.page-hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(50%);
}

.page-hero .hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, var(--retro-bg) 100%);
}

.page-hero h1, .page-hero > p {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.page-hero h1 span {
  color: var(--retro-cyan);
}

.page-hero h1 span:last-child {
  color: var(--retro-red);
}

.page-hero > p {
  font-size: 1.125rem;
  color: #888;
  max-width: 600px;
  margin: 0 auto;
}

.products-list {
  padding: 4rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.product-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 8rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .product-row {
    grid-template-columns: 1fr 1fr;
  }
  
  .product-row:nth-child(even) {
    direction: rtl;
  }
  
  .product-row:nth-child(even) > * {
    direction: ltr;
  }
}

.product-row-image {
  position: relative;
}

.product-row-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s;
}

.product-row:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.product-row-tag {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background: var(--retro-red);
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.product-row-decoration {
  position: absolute;
}

.product-row-decoration-1 {
  bottom: -1rem;
  right: -1rem;
  width: 96px;
  height: 96px;
  border-right: 2px solid var(--retro-cyan);
  border-bottom: 2px solid var(--retro-cyan);
}

.product-row-decoration-2 {
  top: -1rem;
  left: -1rem;
  width: 96px;
  height: 96px;
  border-left: 2px solid var(--retro-red);
  border-top: 2px solid var(--retro-red);
}

.product-row-content .rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.product-row-content .rating svg {
  width: 16px;
  height: 16px;
  color: var(--retro-gold);
}

.product-row-content .rating span {
  font-size: 0.875rem;
  font-weight: 700;
  color: #888;
}

.product-row-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.product-row-content > p {
  font-size: 1.125rem;
  color: #888;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.product-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.product-specs-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ccc;
  font-size: 0.875rem;
  font-weight: 500;
}

.product-specs-item::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--retro-cyan);
}

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

.product-row-pricing .price {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: var(--font-display);
  color: var(--retro-cyan);
}

.product-row-pricing .btn-primary {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* Tech Specs */
.tech-specs {
  margin-top: 10rem;
  background: var(--retro-card);
  border: 1px solid var(--retro-border);
  padding: 2rem;
}

.tech-specs-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tech-specs-header svg {
  width: 32px;
  height: 32px;
  color: var(--retro-cyan);
}

.tech-specs-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
}

.tech-specs-header h2 span {
  color: var(--retro-cyan);
}

.tech-specs table {
  width: 100%;
  border-collapse: collapse;
}

.tech-specs th {
  text-align: left;
  padding: 1.5rem 1rem;
  border-bottom: 1px solid var(--retro-border);
  font-family: var(--font-pixel);
  font-size: 0.625rem;
  color: var(--retro-red);
}

.tech-specs td {
  padding: 1.5rem 1rem;
  border-bottom: 1px solid rgba(42, 42, 42, 0.5);
}

.tech-specs td:first-child {
  font-weight: 700;
  color: white;
}

.tech-specs td:nth-child(2) {
  font-family: var(--font-mono);
  font-size: 1.125rem;
}

.tech-specs td:last-child span {
  padding: 0.25rem 0.75rem;
  background: rgba(0, 240, 255, 0.1);
  color: var(--retro-cyan);
  font-size: 0.625rem;
  font-weight: 700;
  border: 1px solid rgba(0, 240, 255, 0.3);
}

/* Services Page */
.services-list {
  padding: 4rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.service-card {
  background: var(--retro-card);
  border: 1px solid var(--retro-border);
  padding: 2rem;
  margin-bottom: 3rem;
}

.service-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.6;
  margin-bottom: 2rem;
  transition: all 0.3s;
}

.service-card:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.service-card h2 {
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
  transition: color 0.2s;
}

.service-card:hover h2 {
  color: var(--retro-cyan);
}

.service-card > p {
  color: #888;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.service-features-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #ccc;
}

.service-features-item svg {
  width: 16px;
  height: 16px;
  color: var(--retro-red);
}

.service-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--retro-border);
}

.service-card-footer .price {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--retro-cyan);
}

.service-card-footer a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  transition: gap 0.2s;
}

.service-card-footer a:hover {
  gap: 1rem;
}

.service-card-footer a svg {
  width: 16px;
  height: 16px;
  color: var(--retro-red);
}

/* Process Section */
.process-section {
  margin-top: 10rem;
  padding: 4rem 1.5rem;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.process-section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 5rem;
}

.process-section h2 span {
  color: var(--retro-cyan);
}

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

.process-item {
  background: var(--retro-card);
  border: 1px solid var(--retro-border);
  padding: 2rem;
  position: relative;
}

.process-step {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 62, 62, 0.2);
  line-height: 1;
}

.process-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.process-item p {
  color: #888;
}

/* Repair Page */
.repair-form-section {
  padding: 4rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.form-card {
  background: var(--retro-card);
  border: 1px solid var(--retro-border);
  padding: 2rem;
}

.form-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.form-header svg {
  width: 32px;
  height: 32px;
  color: var(--retro-red);
}

.form-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.form-header h2 span {
  color: var(--retro-red);
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: var(--font-pixel);
  font-size: 0.625rem;
  color: var(--retro-cyan);
}

.form-group select,
.form-group input,
.form-group textarea {
  background: var(--retro-bg);
  border: 1px solid var(--retro-border);
  padding: 1rem;
  color: white;
  font-size: 1rem;
  font-family: inherit;
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--retro-cyan);
}

.form-group textarea {
  resize: none;
}

.form-notice {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 62, 62, 0.1);
  border: 1px solid rgba(255, 62, 62, 0.3);
  margin: 2rem 0;
}

.form-notice svg {
  width: 24px;
  height: 24px;
  color: var(--retro-red);
  flex-shrink: 0;
}

.form-notice p {
  font-size: 0.75rem;
  color: var(--retro-red);
  line-height: 1.5;
}

.submit-btn {
  width: 100%;
  padding: 1.5rem;
  background: var(--retro-red);
  color: white;
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: all 0.2s;
}

.submit-btn:hover {
  background: rgba(255, 62, 62, 0.9);
}

/* Sidebar */
.repair-sidebar {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.sidebar-card {
  background: var(--retro-card);
  border: 1px solid var(--retro-border);
  padding: 1.5rem;
}

.sidebar-card h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--retro-border);
  margin-bottom: 1.5rem;
}

.sidebar-card h3 svg {
  width: 20px;
  height: 20px;
}

.system-log {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #666;
  line-height: 1.8;
}

.system-log .cyan {
  color: var(--retro-cyan);
}

.system-log .red {
  color: var(--retro-red);
}

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

.lab-cam-header .label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--retro-red);
}

.lab-cam-header .live-dot {
  width: 8px;
  height: 8px;
  background: var(--retro-red);
  border-radius: 50%;
  animation: pulse 1s infinite;
}

.lab-cam-image {
  aspect-ratio: 16/9;
  background: black;
  overflow: hidden;
}

.lab-cam-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.5;
}

.lab-cam-footer {
  margin-top: 1rem;
  font-size: 0.625rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(21, 21, 21, 0.5);
  border: 1px solid var(--retro-border);
}

.trust-badge svg {
  width: 24px;
  height: 24px;
  color: var(--retro-cyan);
}

.trust-badge h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.trust-badge p {
  font-size: 0.625rem;
  color: #666;
}

/* Contact Page */
.contact-section {
  padding: 4rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.contact-form-card {
  background: var(--retro-card);
  border: 1px solid var(--retro-border);
  padding: 2rem;
}

.contact-form-card h2 {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.contact-form-card h2 svg {
  width: 32px;
  height: 32px;
  color: var(--retro-cyan);
}

.contact-form-card h2 span {
  color: var(--retro-cyan);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form .form-group label {
  color: var(--retro-red);
}

.contact-form .submit-btn {
  background: var(--retro-cyan);
  color: black;
}

.contact-form .submit-btn:hover {
  background: rgba(0, 240, 255, 0.9);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.contact-info h3 svg {
  width: 24px;
  height: 24px;
  color: var(--retro-red);
}

.contact-info p {
  font-size: 1.125rem;
  color: #888;
  line-height: 1.7;
}

.contact-info .phone {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.25rem;
  color: #ccc;
}

.contact-info .phone svg {
  width: 20px;
  height: 20px;
  color: var(--retro-cyan);
}

.contact-info .email {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.25rem;
  color: #ccc;
}

.contact-info .email svg {
  width: 20px;
  height: 20px;
  color: var(--retro-cyan);
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  width: 64px;
  height: 64px;
  background: var(--retro-card);
  border: 1px solid var(--retro-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.social-link:hover {
  border-color: var(--retro-cyan);
  color: var(--retro-cyan);
}

.social-link svg {
  width: 32px;
  height: 32px;
}

.map-placeholder {
  position: relative;
  height: 250px;
  background: var(--retro-card);
  border: 1px solid var(--retro-border);
  padding: 1rem;
  margin-top: 2rem;
}

.map-placeholder .map-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--retro-red);
  color: white;
  padding: 0.25rem 0.75rem;
  font-size: 0.625rem;
  font-weight: 700;
}

.map-placeholder .map-badge .dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: pulse 1s infinite;
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.4;
}

.map-placeholder .ping {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder .ping-outer {
  width: 48px;
  height: 48px;
  border: 2px solid var(--retro-red);
  border-radius: 50%;
  animation: ping 1.5s infinite;
}

.map-placeholder .ping-inner {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--retro-red);
  border-radius: 50%;
}

@keyframes ping {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

/* Footer */
footer {
  background: var(--retro-bg);
  border-top: 1px solid var(--retro-border);
  padding: 5rem 1.5rem 2.5rem;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand p {
  color: #888;
  max-width: 400px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--retro-card);
  border: 1px solid var(--retro-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.footer-social a:hover {
  border-color: var(--retro-cyan);
  color: var(--retro-cyan);
}

.footer-social a svg {
  width: 20px;
  height: 20px;
}

.footer-links h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #888;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-links.contact-methods li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-links.contact-methods svg {
  width: 20px;
  height: 20px;
  color: var(--retro-red);
}

.footer-bottom {
  max-width: 1280px;
  margin: 5rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--retro-border);
  display: flex;
  flex-direction: column;
  md: flex-row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  color: #666;
  font-size: 0.875rem;
}

.footer-bottom .links {
  display: flex;
  gap: 2rem;
}

.footer-bottom .links a {
  color: #666;
  font-size: 0.875rem;
}

.footer-bottom .links a:hover {
  color: white;
}

/* Product Gallery */
.product-detail-image {
  position: relative;
}

.product-detail-image .main-image {
  width: 100%;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s;
}

.product-detail-image .main-image:hover {
  transform: scale(1.02);
}

.gallery-thumbs {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.gallery-thumbs::-webkit-scrollbar {
  height: 4px;
}

.gallery-thumbs::-webkit-scrollbar-track {
  background: var(--retro-card);
}

.gallery-thumbs::-webkit-scrollbar-thumb {
  background: var(--retro-border);
}

.gallery-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.2s;
  border: 2px solid transparent;
  flex-shrink: 0;
}

.gallery-thumb:hover {
  opacity: 0.8;
}

.gallery-thumb.active {
  opacity: 1;
  border-color: var(--retro-cyan);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

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

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--retro-cyan);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--retro-card);
  border: 1px solid var(--retro-border);
  color: white;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.lightbox-nav:hover {
  background: var(--retro-red);
  border-color: var(--retro-red);
}

.lightbox-nav svg {
  width: 24px;
  height: 24px;
}

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

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

@media (max-width: 768px) {
  .lightbox-prev {
    left: 10px;
  }
  .lightbox-next {
    right: 10px;
  }
  .lightbox-nav {
    width: 40px;
    height: 40px;
  }
}

/* Responsive Nav */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-stats {
    display: none;
  }
  
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
.footer-bottom {
    flex-direction: column;
    text-align: center;
  }
 }

/* About Section - added for terms/privacy pages */
.about-section {
  padding: 8rem 1.5rem;
  background: var(--retro-bg);
}

.about-section .container {
  max-width: 1280px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  gap: 4rem;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.about-content {
  order: 1;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.about-content h2 span {
  color: var(--retro-cyan);
}

.about-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
  color: var(--retro-cyan);
}

.about-content p {
  color: #9ca3af;
  line-height: 1.8;
}

.about-content ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.about-content li {
  color: #9ca3af;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.about-content li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--retro-cyan);
}

.about-image {
  position: relative;
  order: 2;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.3s ease;
}

.about-image img:hover {
  filter: grayscale(0%) opacity(1);
}

@media (max-width: 767px) {
  .about-section {
    padding: 4rem 1.5rem;
  }

  .about-image {
    order: -1;
  }

  .about-image img {
    aspect-ratio: 16/9;
  }
}
