/* Modern Hamburger Header Styles */
.main-header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eaeaea;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.07);
  position: relative;
  z-index: 1000;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 70px;
}
.logo-link {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 64px;
  width: 180px;
  object-fit: contain;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: #fff;
  border: 2px solid #ff6723;
  border-radius: 8px;
  cursor: pointer;
  transition: border 0.2s;
}
.hamburger .bar {
  display: block;
  width: 28px;
  height: 3px;
  background: #4B0082;
  border-radius: 2px;
  transition: all 0.3s;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  color: #4B0082;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 8px 0;
  transition: color 0.2s;
}
.nav-link:hover {
  color: #ff6723;
}
.nav-phone {
  color: #ff6723;
  font-weight: 700;
  font-size: 1.15rem;
}
@media (max-width: 900px) {
  .container {
    height: 60px;
  }
  .logo-img {
    height: 48px;
    width: 120px;
  }
  .growth-section {
    flex-direction: column !important;
    padding: 32px 12px 32px 12px !important;
    align-items: center !important;
  }
  .growth-section > div {
    max-width: 100% !important;
    min-width: unset !important;
    margin: 0 auto 24px auto !important;
    padding: 0 !important;
  }
  .growth-title {
    font-size: 1.5rem !important;
    text-align: center !important;
    margin-bottom: 18px !important;
  }
  .growth-section a.growth-btn {
    font-size: 1rem !important;
    padding: 14px 0 !important;
    margin-top: 18px !important;
    width: 100%;
    max-width: 320px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .growth-section .growth-title,
  .growth-section div[style*='font-size: 1.25rem'] {
    text-align: center !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .growth-section .growth-title span,
  .growth-section .growth-title .accent {
    display: inline;
  }
  .growth-section .growth-btn {
    margin-bottom: 24px !important;
  }
  .growth-section lottie-player {
    width: 180px !important;
    height: 120px !important;
    margin: 0 auto !important;
  }
}
@media (max-width: 768px) {
  .main-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    width: 100vw;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    box-shadow: 0 8px 24px 0 rgba(0,0,0,0.12);
    z-index: 2000;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    display: none;
    padding-bottom: 12px;
  }
  .main-nav.open {
    display: flex;
  }
  .nav-link, .nav-phone {
    width: 100%;
    padding: 18px 24px;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
    color: #4B0082;
    background: none;
    text-align: left;
    font-weight: 600;
    text-shadow: 0 1px 2px #fff8;
    text-decoration: none;
  }
  .nav-phone {
    color: #ff6723;
    font-weight: 700;
    font-size: 1.2rem;
    border-bottom: none;
  }
  .hamburger {
    display: flex;
  }
}
@media (max-width: 600px) {
  section, .services-bg, .success-section-modern, .why-section, .growth-section, .creative-section, .contact-form-section, .contact-info-section, .social-section, .business-hours-section, .about-cards, .services-cards, .stats-section, .culture-section, .values-grid, .case-section, .faq-section, .tech-section, .process-section, .hero-content {
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 12px !important;
    margin-bottom: 12px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box;
  }
  .about-card, .service-card, .case-card, .stat, .value-item, .contact-info-item, .social-card {
    padding: 24px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 8px !important;
  }
  .growth-section .growth-title,
  .growth-section div[style*='font-size: 1.25rem'] {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
  .service-card,
  .service-card * {
    box-sizing: border-box !important;
  }
  .service-card {
    padding: 24px 16px !important;
    margin: 8px 0 !important;
    width: 100% !important;
  }
  .service-card > * {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
} 