/* ===== VIOLET CABLE — SERVICE PAGE STYLES ===== */

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #16161f;
  --bg-card-hover: #1c1c28;
  --violet-primary: #8b5cf6;
  --violet-light: #a78bfa;
  --violet-dark: #6d28d9;
  --violet-glow: rgba(139, 92, 246, 0.15);
  --cyan-accent: #22d3ee;
  --green-accent: #34d399;
  --text-primary: #e8e8f0;
  --text-secondary: #9494a8;
  --text-muted: #5a5a70;
  --border-color: rgba(139, 92, 246, 0.12);
  --border-hover: rgba(139, 92, 246, 0.35);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

.grid-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.grid-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(139, 92, 246, 0.08), transparent 70%);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: 0.025;
  background: 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");
  pointer-events: none;
}

.content { position: relative; z-index: 2; }

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--violet-primary), var(--violet-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.logo-text {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-primary);
}

.logo-text span { color: var(--violet-light); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  font-family: 'JetBrains Mono', monospace;
  transition: color 0.25s;
}

.nav-links a:hover { color: var(--violet-light); }

.nav-cta {
  padding: 0.55rem 1.25rem;
  background: var(--violet-primary);
  color: #fff !important;
  border-radius: 6px;
  font-weight: 500;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.25);
}

.nav-cta:hover {
  background: var(--violet-light) !important;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  max-width: 1100px;
  margin: 0 auto;
  padding: 7rem 2rem 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--violet-light);
  text-decoration: none;
  transition: color 0.25s;
}

.breadcrumb a:hover { color: var(--cyan-accent); }

.breadcrumb-sep {
  margin: 0 0.5rem;
  color: var(--text-muted);
}

/* ===== SERVICE HERO ===== */
.service-hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
}

.service-label {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--violet-glow);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--violet-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.service-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.service-hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--violet-light), var(--cyan-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: 2rem;
}

.service-hero-actions {
  display: flex;
  gap: 1rem;
}

.btn-primary {
  padding: 0.85rem 2rem;
  background: var(--violet-primary);
  color: #fff;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.25);
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
}

.btn-primary:hover {
  background: var(--violet-light);
  transform: translateY(-2px);
}

.btn-secondary {
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  font-family: 'Outfit', sans-serif;
}

.btn-secondary:hover {
  background: var(--violet-glow);
  border-color: var(--violet-primary);
}

/* ===== CONTENT SECTIONS ===== */
.service-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.content-block {
  margin-bottom: 4rem;
}

.content-block h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.content-block .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--violet-light);
  margin-bottom: 0.75rem;
}

.content-block p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.content-block p strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1.5rem;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--violet-glow);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* Process steps */
.process-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.process-step {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  transition: all 0.3s;
}

.process-step:hover {
  border-color: var(--border-hover);
}

.process-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--violet-glow);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  color: var(--violet-light);
  font-size: 0.85rem;
}

.process-step h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* Tech specs table */
.specs-table {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 1.5rem;
}

.spec-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
}

.spec-row:last-child { border-bottom: none; }

.spec-label {
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spec-value {
  color: var(--text-primary);
}

/* CTA banner */
.cta-banner {
  margin: 4rem auto 0;
  max-width: 1100px;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(34, 211, 238, 0.05));
  border: 1px solid var(--border-hover);
  border-radius: 16px;
  text-align: center;
}

.cta-banner h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.cta-banner p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Other services */
.other-services {
  max-width: 1100px;
  margin: 4rem auto 0;
  padding: 0 2rem;
}

.other-services h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

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

.other-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.other-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.other-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--violet-glow);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.other-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.other-card span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
}

/* Footer */
footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border-color);
  margin-top: 5rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.25s;
}

.footer-links a:hover { color: var(--violet-light); }

/* Touch devices */
@media (hover: none) and (pointer: coarse) {
  *, *::before, *::after { cursor: auto !important; }
}

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .other-grid { grid-template-columns: repeat(2, 1fr); }
  .service-hero-actions { flex-wrap: wrap; }
  .cta-banner .actions { flex-wrap: wrap; }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  nav { padding: 0.875rem 1.25rem; }
  .hamburger { display: flex; }
  .nav-links { display: none; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.97);
    backdrop-filter: blur(20px);
    padding: 1.5rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    gap: 1rem;
    list-style: none;
  }

  .breadcrumb { padding: 5.5rem 1.25rem 1rem; font-size: 0.7rem; }
  .service-hero { padding: 1.5rem 1.25rem 3rem; }
  .service-hero-actions { flex-direction: column; align-items: stretch; }
  .service-hero-actions .btn-primary,
  .service-hero-actions .btn-secondary { justify-content: center; width: 100%; }

  .service-content { padding: 0 1.25rem 3rem; }
  .content-block h2 { font-size: 1.5rem; }

  .feature-grid { grid-template-columns: 1fr; }
  .other-grid { grid-template-columns: 1fr; }
  .spec-row { grid-template-columns: 1fr; gap: 0.3rem; }

  .cta-banner { padding: 2rem 1.25rem; margin: 2.5rem 1.25rem 0; }
  .cta-banner h2 { font-size: 1.5rem; }
  .cta-banner .actions { flex-direction: column; align-items: stretch; }
  .cta-banner .actions .btn-primary,
  .cta-banner .actions .btn-secondary { justify-content: center; }

  .other-services { padding: 0 1.25rem; margin: 2.5rem auto 0; }

  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
}

/* Small phones (max-width: 480px) */
@media (max-width: 480px) {
  nav { padding: 0.75rem 1rem; }
  .breadcrumb { padding: 5rem 1rem 1rem; }
  .service-hero { padding: 1rem 1rem 2.5rem; }
  .service-content { padding: 0 1rem 2.5rem; }
  .cta-banner { margin: 2rem 1rem 0; padding: 1.5rem 1rem; }
  .other-services { padding: 0 1rem; }
}
