/* About Us-specific wrapper override */
.wrapper {
  max-width: 1075px;
  padding: 0 20px;
}

.content {
  width: 100%;
  flex-grow: 1;
  padding-bottom: 48px;
}

/* Hero Section */
.hero {
  padding-top: 80px;
  padding-bottom: 100px;
  text-align: center;
  background: #f8f9fa;
  color: #333;
  border-radius: 20px;
  margin-bottom: 80px;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero h1 {
  margin: 0 0 32px 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #2c3e50;
  letter-spacing: -0.02em;
}

.hero .subtitle {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  color: #5a6c7d;
  font-weight: 400;
}

/* Story Section */
.story-section {
  margin-bottom: 80px;
  padding: 70px 90px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 20px;
  color: white;
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
}

.story-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: white;
  text-align: center;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.story-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 28px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.story-content p:last-child {
  margin-bottom: 0;
}

/* Mission & Values */
.mission-values {
  margin-bottom: 80px;
}

.mission-card {
  text-align: center;
  padding: 70px 50px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  margin-bottom: 70px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
}

.mission-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 40px;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.mission-card h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: #2c3e50;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.mission-card p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #5a6c7d;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.value-item {
  text-align: center;
  padding: 45px 35px;
  background: white;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
}

.value-item h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: #2c3e50;
  line-height: 1.3;
}

.value-item p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5a6c7d;
  margin: 0;
  font-weight: 400;
}

/* What We Do */
.what-we-do {
  margin-bottom: 80px;
}

.what-we-do h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #2c3e50;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.services-overview p {
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #5a6c7d;
  max-width: 800px;
  margin: 0 auto 70px;
  font-weight: 400;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.service-item {
  padding: 45px 35px;
  background: white;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.service-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
}

.service-item h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: #2c3e50;
  text-align: left;
  width: 100%;
  line-height: 1.3;
}

.service-item p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5a6c7d;
  margin: 0;
  text-align: left;
  width: 100%;
  font-weight: 400;
}

/* Technology Section */
.technology-section {
  margin-bottom: 80px;
  padding: 70px 90px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border-radius: 20px;
  color: white;
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
}

.technology-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.tech-content p {
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
  font-weight: 400;
}

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

.tech-feature {
  background: rgba(255, 255, 255, 0.12);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: transform 0.3s ease;
}

.tech-feature:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.15);
}

.feature-name {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.feature-desc {
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.6;
  font-weight: 400;
}

/* Team Section */
.team-section {
  margin-bottom: 80px;
  padding: 70px 90px;
  background: #f8f9fa;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.team-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #2c3e50;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.team-content p {
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #5a6c7d;
  max-width: 700px;
  margin: 0 auto 50px;
  font-weight: 400;
}

.team-stats {
  display: flex;
  justify-content: center;
  gap: 70px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 12px;
  line-height: 1;
}

.stat-label {
  font-size: 1.05rem;
  color: #5a6c7d;
  font-weight: 500;
  line-height: 1.3;
}

/* Contact CTA */
.contact-cta {
  text-align: center;
  padding: 70px 50px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
}

.cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.cta-content p {
  font-size: 1.15rem;
  margin-bottom: 40px;
  color: #5a6c7d;
  line-height: 1.7;
  font-weight: 400;
}

/* About Us-specific button overrides */
.btn {
  padding: 18px 36px;
  font-size: 1.05rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .wrapper {
    padding: 0 16px;
  }

  .hero {
    padding-top: 60px;
    padding-bottom: 80px;
    margin-bottom: 60px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

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

  .story-section {
    padding: 50px 30px;
  }

  .story-content h2 {
    font-size: 2rem;
  }

  .story-content p {
    font-size: 1rem;
  }

  .mission-card {
    padding: 50px 30px;
  }

  .mission-card h3 {
    font-size: 1.8rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .what-we-do h2 {
    font-size: 2rem;
  }

  .services-list {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .technology-section {
    padding: 50px 30px;
  }

  .technology-section h2 {
    font-size: 2rem;
  }

  .tech-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .team-section {
    padding: 50px 30px;
  }

  .team-section h2 {
    font-size: 2rem;
  }

  .team-stats {
    flex-direction: column;
    gap: 40px;
  }

  .contact-cta {
    padding: 50px 30px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

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

  .btn {
    padding: 16px 28px;
    font-size: 1rem;
  }

  .service-item {
    padding: 30px 25px;
  }

  .value-item {
    padding: 30px 25px;
  }

  .tech-feature {
    padding: 25px;
  }
}