.hero-section {
  min-height: 100vh;
  background: linear-gradient(rgba(10, 37, 64, 0.8), rgba(10, 37, 64, 0.9)), url('images/hero1-modern-office-technology_orig.jpg') center/cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  color: white;
  padding-top: 100px;
}

.hero-content {
  max-width: 800px;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, white, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-cta-group {
  display: flex;
  gap: 24px;
  align-items: center;
}

.principles-section {
  background: var(--bg-secondary);
  overflow: hidden;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.principle-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-card);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(10, 37, 64, 0.08);
  transition: all 0.3s ease;
  animation-delay: var(--delay);
}

.principle-card:nth-child(1) { --delay: 0.1s; }
.principle-card:nth-child(2) { --delay: 0.2s; }
.principle-card:nth-child(3) { --delay: 0.3s; }

.principle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(10, 37, 64, 0.15);
}

.principle-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.principle-icon svg {
  width: 40px;
  height: 40px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-subtitle {
  color: var(--accent);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.section-title {
  font-size: 44px;
  color: var(--primary);
  margin-bottom: 24px;
}

.section-description {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.approach-section {
  background: var(--bg-primary);
}

.approach-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.approach-text h3 {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 24px;
}

.approach-image {
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(10, 37, 64, 0.15);
}

.team-spotlight-section {
  background: var(--bg-secondary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.insight-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  text-align: center;
}

.insight-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.insight-badge {
  background: var(--accent);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 24px;
}

.cta-section {
  background: linear-gradient(rgba(10, 37, 64, 0.9), rgba(10, 37, 64, 0.95)), url('images/section3-data-center-server_orig.jpg') center/cover;
  background-attachment: fixed;
  color: white;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.methodology-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 60px;
  animation-delay: var(--delay);
}

.timeline-item:nth-child(1) { --delay: 0.1s; }
.timeline-item:nth-child(2) { --delay: 0.2s; }
.timeline-item:nth-child(3) { --delay: 0.3s; }
.timeline-item:nth-child(4) { --delay: 0.4s; }
.timeline-item:nth-child(5) { --delay: 0.5s; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: -60px;
  width: 2px;
  background: var(--border-color);
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-number {
  position: absolute;
  left: -16px;
  top: 0;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
}

.timeline-content {
  background: var(--bg-card);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(10, 37, 64, 0.08);
}

.timeline-title {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 16px;
}

.contact-section {
  background: var(--bg-primary);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info-card {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(10, 37, 64, 0.08);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.contact-info-text {
  color: var(--text-secondary);
}

.map-container {
  margin-top: 40px;
  border-radius: 16px;
  overflow: hidden;
  height: 300px;
  background: var(--bg-secondary);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.resource-card {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(10, 37, 64, 0.08);
  transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(10, 37, 64, 0.15);
}

.resource-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.resource-content {
  padding: 32px;
}

.resource-category {
  background: var(--accent);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 16px;
}

.resource-title {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 16px;
}

.resource-excerpt {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.read-more-link {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.testimonial-card {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(10, 37, 64, 0.08);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 80px;
  color: var(--accent);
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: serif;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 24px;
  color: var(--text-secondary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-info h4 {
  color: var(--primary);
  margin-bottom: 4px;
}

.testimonial-info p {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 0;
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.floating-shapes::before,
.floating-shapes::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(10, 37, 64, 0.05));
  filter: blur(40px);
}

.floating-shapes::before {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  animation: float 20s ease-in-out infinite;
}

.floating-shapes::after {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.success-message {
  background: #d4edda;
  color: #155724;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  display: none;
}

.loading-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 8px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 40px;
  }
  
  .hero-description {
    font-size: 18px;
  }
  
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  
  .approach-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .timeline-item {
    padding-left: 60px;
  }
  
  .floating-shapes::before,
  .floating-shapes::after {
    display: none;
  }
}