/* Network26 shared site styles */
:root {
  --navy: #0f172a;
  --teal: #14b8a6;
  --teal-dark: #0f766e;
  --teal-active: #0d9488;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
}

.logo-font {
  font-family: 'Orbitron', 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.nav-link {
  transition: color 0.1s ease;
}
.nav-link:hover {
  color: #14b8a6;
}
.nav-link.nav-link-active {
  color: #0d9488;
}
.nav-link.nav-link-active:hover {
  color: #0d9488;
}
.mobile-link.nav-link-active {
  color: #0d9488;
  background-color: #f0fdfa;
  font-weight: 500;
}

.hero-bg {
  background: linear-gradient(135deg, #0f172a 0%, #1e2937 100%);
}

.network-pattern {
  background-image:
    radial-gradient(circle at 25% 30%, rgba(20, 184, 166, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 70%, rgba(14, 165, 233, 0.06) 0%, transparent 60%);
  background-size: 120px 120px;
}

.teal-btn {
  background-color: #14b8a6;
  color: white;
  transition: all 0.15s ease;
}
.teal-btn:hover {
  background-color: #0f766e;
  transform: translateY(-1px);
}

.navy-btn {
  background-color: #0f172a;
  color: white;
  transition: all 0.15s ease;
}
.navy-btn:hover {
  background-color: #1e2937;
}

.service-card {
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.05), 0 8px 10px -6px rgb(0 0 0 / 0.05);
}

.step-number {
  background: linear-gradient(135deg, #14b8a6, #0ea5e9);
  color: white;
  font-weight: 700;
}

.service-bullet {
  flex-shrink: 0;
  line-height: 1;
  transform: translateY(-0.08em);
}

.section-title {
  font-size: 2.25rem;
  line-height: 2.5rem;
  letter-spacing: -0.04em;
}

@media (max-width: 640px) {
  .section-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

.section-header {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.tab-active {
  background-color: #14b8a6;
  color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.testimonial-card {
  transition: all 0.2s ease;
}

.standard-card {
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.standard-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.05), 0 8px 10px -6px rgb(0 0 0 / 0.05);
}

.standard-icon {
  background: linear-gradient(135deg, #14b8a6, #0ea5e9);
  color: white;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item[open] summary .faq-chevron {
  transform: rotate(180deg);
}
.faq-chevron {
  transition: transform 0.2s ease;
}
