/* ===================================
   COMPANY PAGE STYLES
   =================================== */

/* Section Label */
.section-label {
  font-family: 'Arimo', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #155DFC;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-align: center;
}

/* Section Icon */
.section-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

/* Section Title Center */
.section-title-center {
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  color: #1E293B;
  text-align: center;
  margin-bottom: 48px;
}

/* ===================================
   ABOUT US HERO SECTION
   =================================== */
.about-hero {
  background: #FFFFFF;
  padding: 80px 0;
}

.about-title {
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  color: #155DFC;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.about-intro {
  max-width: 900px;
  margin: 0 auto;
}

.about-intro p {
  font-family: 'Arimo', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #64748B;
  margin-bottom: 24px;
  text-align: justify;
}

.about-intro p:last-child {
  margin-bottom: 0;
}

/* ===================================
   WHAT DRIVES US SECTION
   =================================== */
.what-drives-us {
  background: #F8FAFC;
  padding: 80px 0;
}

.drives-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.drives-content h2 {
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  color: #1E293B;
  margin-bottom: 24px;
}

.drives-content p {
  font-family: 'Arimo', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #64748B;
  margin-bottom: 20px;
}

.drives-content .tagline {
  font-weight: 600;
  color: #1E293B;
  font-style: italic;
}

.commitments-title {
  font-family: 'Arimo', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #1E293B;
  margin-bottom: 20px;
}

.commitment-item {
  display: flex;
  gap: 12px;
  align-items: start;
  margin-bottom: 16px;
}

.commitment-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.commitment-item span {
  font-family: 'Arimo', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #64748B;
}

/* ===================================
   OUR VISION SECTION
   =================================== */
.our-vision {
  background: #FFFFFF;
  padding: 80px 0;
}

.vision-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.vision-content h2 {
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  color: #1E293B;
  margin-bottom: 24px;
}

.vision-content p {
  font-family: 'Arimo', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #64748B;
  margin-bottom: 20px;
}

/* ===================================
   GLOBAL PRESENCE SECTION
   =================================== */
.global-presence {
  background: #F8FAFC;
  padding: 80px 0;
}

.global-presence h2 {
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  color: #1E293B;
  text-align: center;
  margin-bottom: 24px;
}

.global-presence > .container > p {
  font-family: 'Arimo', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #64748B;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}

.presence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.presence-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.presence-card:hover {
  box-shadow: 0 4px 12px rgba(21, 93, 252, 0.15);
  border-color: #155DFC;
}

.presence-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.presence-card h3 {
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #1E293B;
  margin-bottom: 12px;
}

.presence-card p {
  font-family: 'Arimo', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #64748B;
}

/* ===================================
   OPEN SOURCE COMMITMENT SECTION
   =================================== */
.open-source-commitment {
  background: #FFFFFF;
  padding: 80px 0;
}

.open-source-commitment h2 {
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  color: #1E293B;
  text-align: center;
  margin-bottom: 24px;
}

.open-source-commitment p {
  font-family: 'Arimo', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #64748B;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* ===================================
   WHY CHOOSE US SECTION
   =================================== */
.why-choose-us {
  background: #F8FAFC;
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.feature-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 28px 24px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 4px 12px rgba(21, 93, 252, 0.15);
  border-color: #155DFC;
}

.feature-icon {
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #1E293B;
  margin-bottom: 12px;
}

.feature-card p {
  font-family: 'Arimo', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #64748B;
}

.closing-statement {
  font-family: 'Arimo', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
  color: #1E293B;
  text-align: center;
  font-style: italic;
  margin-top: 20px;
}

/* ===================================
   JOIN US CTA SECTION
   =================================== */
.join-us-cta {
  background: linear-gradient(135deg, #155DFC 0%, #1E40AF 100%);
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
}

.join-us-cta h2 {
  font-family: 'Arimo', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.join-us-cta p {
  font-family: 'Arimo', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #EFF6FF;
  max-width: 700px;
  margin: 0 auto 32px;
}

.join-us-cta .btn.large {
  padding: 16px 40px;
  font-size: 18px;
  line-height: 24px;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 900px) {
  .about-title {
    font-size: 28px;
    line-height: 36px;
  }

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

  .presence-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .section-title-center {
    font-size: 28px;
    line-height: 36px;
  }
}

@media (max-width: 640px) {
  .about-hero,
  .what-drives-us,
  .our-vision,
  .global-presence,
  .open-source-commitment,
  .why-choose-us,
  .join-us-cta {
    padding: 60px 0;
  }

  .about-title {
    font-size: 24px;
    line-height: 32px;
  }

  .about-intro p,
  .drives-content p,
  .vision-content p,
  .global-presence p,
  .open-source-commitment p {
    font-size: 15px;
    line-height: 24px;
  }
}
