/* SnowIT City Landing Pages — Shared Styles */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-primary);
  background: var(--color-navy);
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 107, 53, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 53, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  z-index: 100;
}
.logo {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}
.logo span {
  color: var(--color-orange);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
}
.nav-links a:hover {
  color: var(--color-orange);
}
.nav-cta {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  background: var(--color-orange);
  color: var(--color-navy);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.nav-cta:hover {
  background: var(--color-orange-light);
  box-shadow: 0 0 30px var(--color-orange-glow);
  transform: translateY(-2px);
}
.hero {
  min-height: 65vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 9rem 4rem 4rem;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-cyan);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 4px;
}
.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--color-cyan);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ef4444;
  margin-bottom: 1rem;
  padding: 0.4rem 0.875rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 4px;
}
.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  max-width: 800px;
}
.hero h1 .highlight {
  color: var(--color-orange);
}
.hero-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  max-width: 620px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary {
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 1rem 2rem;
  background: var(--color-orange);
  color: var(--color-navy);
  border: 2px solid var(--color-orange);
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.15s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  min-height: 44px;
}
.btn-primary:hover {
  background: transparent;
  color: var(--color-orange);
  box-shadow: 0 0 30px var(--color-orange-glow);
}
.btn-ghost {
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--color-text-secondary);
  border: 2px solid var(--color-border);
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.15s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  min-height: 44px;
}
.btn-ghost:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
}
.section {
  padding: 5rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.section-dark {
  background: var(--color-navy-deep);
  padding: 5rem 4rem;
  position: relative;
  z-index: 1;
}
.section-dark-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-cyan);
  display: block;
  margin-bottom: 1rem;
}
.section h2,
.section-dark-inner h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.section p,
.section-dark-inner p {
  font-size: 1.0625rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  max-width: 720px;
  margin-bottom: 1.25rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.service-card {
  background: var(--color-navy-light);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.75rem;
  transition: all 0.2s ease;
}
.service-card:hover {
  border-color: var(--color-orange);
  transform: translateY(-3px);
}
.service-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.75rem;
}
.service-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  margin: 0;
  max-width: none;
  line-height: 1.6;
}
.service-price {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--color-orange);
  margin-top: 0.75rem;
  display: block;
}
.urgency-box {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2.5rem;
}
.urgency-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ef4444;
  margin-bottom: 1rem;
}
.urgency-box p {
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin-bottom: 0;
  max-width: none;
}
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.sector-card {
  background: var(--color-navy-light);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 1.5rem;
}
.sector-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sector-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
  max-width: none;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.process-step {
  background: var(--color-navy);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.75rem;
}
.step-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.75rem;
}
.process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.process-step p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin: 0;
  max-width: none;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}
.pricing-table th {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-border);
}
.pricing-table td {
  font-size: 0.9375rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--color-text-secondary);
}
.pricing-table tr:hover td {
  background: rgba(255, 107, 53, 0.03);
}
.price-highlight {
  color: var(--color-orange);
  font-family: var(--font-mono);
  font-weight: 700;
}
.faq-list {
  margin-top: 2rem;
}
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq-q {
  padding: 1.25rem 1.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: var(--color-navy-light);
  user-select: none;
}
.faq-q:hover {
  color: var(--color-orange);
}
.faq-toggle {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  color: var(--color-orange);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-a {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}
.faq-item.open .faq-a {
  padding: 1rem 1.5rem 1.25rem;
  max-height: 300px;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}
.cta-section {
  text-align: center;
  padding: 5rem 4rem;
  background: var(--color-navy-deep);
  position: relative;
  z-index: 1;
}
.cta-section h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.cta-section p {
  color: var(--color-text-secondary);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-size: 1.0625rem;
  line-height: 1.7;
}
.cta-contact-info {
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
.cta-contact-info a {
  color: var(--color-cyan);
  text-decoration: none;
}
.cta-contact-info a:hover {
  text-decoration: underline;
}
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #25d366;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 1.1rem 2.25rem;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.15s ease;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  min-height: 44px;
}
.wa-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}
.wa-btn svg {
  width: 26px;
  height: 26px;
  fill: #fff;
  flex-shrink: 0;
}
.related-links {
  padding: 3rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.related-links h3 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}
.related-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.625rem 1.125rem;
  background: var(--color-navy-light);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
.related-link:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
}
.footer {
  padding: 3rem 4rem;
  background: var(--color-navy-deep);
  border-top: 1px solid var(--color-border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
}
.footer-tagline {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  max-width: 340px;
}
.footer-links-col h4 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}
.footer-links-col ul {
  list-style: none;
  padding: 0;
}
.footer-links-col li {
  margin-bottom: 0.6rem;
}
.footer-links-col a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}
.footer-links-col a:hover {
  color: var(--color-orange);
}
.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.875rem;
}
.legal-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.875rem;
}
.legal-links a:hover {
  color: var(--color-orange);
}
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }
  .hero {
    padding: 7rem 1.5rem 3rem;
  }
  .hero h1 {
    font-size: clamp(1.875rem, 7vw, 2.5rem);
  }
  .hero-subtitle {
    max-width: 100%;
  }
  .hero-cta-group {
    flex-direction: column;
  }
  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
  .section,
  .related-links {
    padding: 3rem 1.5rem;
  }
  .section-dark {
    padding: 3rem 1.5rem;
  }
  .services-grid,
  .sectors-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }
  .pricing-table {
    display: block;
    overflow-x: auto;
  }
  .footer {
    padding: 2.5rem 1.5rem;
  }
  .footer-inner {
    flex-direction: column;
    gap: 2rem;
  }
  .cta-section {
    padding: 3.5rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 6rem 1rem 2.5rem;
  }
  .hero h1 {
    font-size: 1.75rem;
  }
  .wa-btn {
    font-size: 1rem;
    padding: 0.9rem 1.5rem;
  }
}
