/* Home Page Styles */
.home-page {
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.au-badge {
  background: var(--misted-yellow);
  color: var(--midnight-blue);
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
}

.hero-badge span:last-child {
  color: var(--silver-steel);
  font-size: 14px;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--emerald-green) 0%, var(--midnight-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
}

.hero-element {
  position: absolute;
  border-radius: 50%;
}

.element-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--misted-yellow) 0%, rgba(226, 192, 68, 0.3) 100%);
  right: 50px;
  top: 50px;
}

.element-2 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, var(--emerald-green) 0%, rgba(0, 139, 69, 0.3) 100%);
  right: 200px;
  bottom: 50px;
}

.element-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--midnight-blue) 0%, rgba(25, 25, 112, 0.3) 100%);
  right: 0;
  top: 150px;
}

/* Value Props Section */
.section-header {
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: #666;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.value-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--misted-yellow);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--midnight-blue);
}

.value-card p {
  color: #666;
  line-height: 1.7;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.about-content {
  display: flex;
  justify-content: center;
}

.au-element-large {
  width: 200px;
  height: 200px;
  background: var(--misted-yellow);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px;
  position: relative;
  box-shadow: 0 10px 40px rgba(226, 192, 68, 0.4);
}

.au-symbol {
  font-size: 5rem;
  font-weight: 700;
  color: var(--midnight-blue);
  line-height: 1;
}

.au-number {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--midnight-blue);
}

.au-name {
  font-size: 1.2rem;
  color: var(--midnight-blue);
  font-weight: 500;
}

.about-text h2 {
  color: white;
  margin-bottom: 24px;
}

.about-text p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-features {
  list-style: none;
  padding: 0;
  margin-top: 24px;
}

.about-features li {
  color: var(--misted-yellow);
  margin-bottom: 12px;
  font-weight: 500;
}

/* Industries Section */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.industry-item {
  background: white;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.industry-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.industry-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
}

.industry-name {
  font-weight: 600;
  color: var(--midnight-blue);
}

/* Process Section */
.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.process-step {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  flex: 1;
  max-width: 300px;
  text-align: center;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--misted-yellow);
  color: var(--midnight-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--midnight-blue);
}

.process-step p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

.process-connector {
  width: 50px;
  height: 3px;
  background: var(--silver-steel);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.cta-card {
  background: var(--midnight-blue);
  padding: 60px;
  border-radius: 24px;
  text-align: center;
  color: white;
}

.cta-card h2 {
  color: white;
  margin-bottom: 16px;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-outline {
  border-color: white;
  color: white;
}

.cta-buttons .btn-outline:hover {
  background: white;
  color: var(--midnight-blue);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-visual {
    display: none;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content {
    order: 2;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    flex-direction: column;
  }

  .process-connector {
    width: 3px;
    height: 30px;
  }

  .process-step {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 80px 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .au-element-large {
    width: 150px;
    height: 150px;
  }

  .au-symbol {
    font-size: 3.5rem;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .industry-item {
    padding: 16px;
  }

  .industry-icon {
    font-size: 1.8rem;
  }

  .cta-card {
    padding: 40px 24px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}
