.footer {
  background: var(--dark-bg);
  color: var(--white);
  padding: 3rem 0 1rem;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-section h3 {
  color: var(--accent-blue);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}
.footer-section ul {
  list-style: none;
}
.footer-section ul li {
  margin-bottom: 0.5rem;
}
.footer-section a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-section a:hover {
  color: var(--accent-blue);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  background: #2e323f;
  border-radius: 6px;
}
.footer-logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-blue);
}
.footer-description {
  color: #cccccc;
  line-height: 1.6;
}
.contact-info p {
  margin-bottom: 0.5rem;
  color: #cccccc;
}
.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.social-links {
  display: flex;
  gap: 1rem;
}
.social-links a {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.social-links a:hover {
  transform: scale(1.2);
}
@media (max-width: 768px) {
  .nav-container {
    padding: 0 1rem;
  }
  .nav-menu {
    display: none;
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
    margin: 0;
    min-width: auto;
  }
  .dropdown-menu::before {
    display: none;
  }
  .dropdown-menu a {
    padding: 0.5rem 1rem;
    border-bottom: none;
    color: var(--text-secondary);
  }
  .dropdown-menu a:hover {
    background: transparent;
    transform: translateX(0.25rem);
  }
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.section-header h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin: 0.75rem auto 0;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
  border-radius: 2px;
}
.section-intro {
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.service-section {
  padding: 5rem 0;
}
.service-section:nth-child(even) {
  background: var(--light-bg);
}
.service-section:nth-child(odd) {
  background: white;
}
.card-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
.card-grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}
.card-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.card-grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.service-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid #eef2f7;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}
.service-card.featured {
  border-color: var(--primary-blue);
  transform: scale(1.02);
}
.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}
.service-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.service-icon {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  text-align: center;
}
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.feature-tag {
  background: var(--primary-blue);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}
.feature-tag.secondary {
  background: var(--accent-blue);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.pricing-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid #eef2f7;
}
.pricing-card.featured {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}
.pricing-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 1rem 0;
}
.price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-secondary);
}
.testimonial-card {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary-blue);
}
.stars {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.testimonial-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}
.customer {
  font-weight: 600;
  color: var(--text-primary);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.step {
  text-align: center;
  padding: 1.5rem;
}
.step-number {
  background: var(--primary-blue);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}
.step h3,
.step h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.step p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.related-card {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #eef2f7;
  box-shadow: var(--shadow-sm);
}
.related-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}
.related-card svg {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}
.related-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.related-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}
.final-cta {
  padding: 5rem 0;
  background: var(--dark-bg);
  color: white;
  text-align: center;
}
.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.cta-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.btn {
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  text-align: center;
  justify-content: center;
}
.btn-primary {
  background: var(--primary-blue);
  color: white;
}
.btn-primary:hover {
  background: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(58, 154, 198, 0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}
.btn-secondary:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-2px);
}
.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
}
.btn-small {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}
.text-center {
  text-align: center;
}
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  .section-header h2 {
    font-size: 2rem;
  }
  .service-section {
    padding: 3rem 0;
  }
  .card-grid-2,
  .card-grid-3,
  .card-grid-4 {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .cta-content h2 {
    font-size: 2rem;
  }
}
