/* About Page Styles */

/* Hero */
.about-hero {
  background: #f0f3f7;
  background-image:
    linear-gradient(rgba(200,210,220,0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,210,220,0.3) 1px, transparent 1px);
  background-size: 60px 60px;
  border-bottom: 1px solid #e0e4ea;
  padding: 80px 40px 72px;
}

.about-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: #5a6670;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-title {
  font-size: 44px;
  font-weight: 800;
  color: #1a2b3c;
  line-height: 1.15;
  margin: 0 0 20px;
}

.about-desc {
  font-size: 17px;
  color: #5a6670;
  line-height: 1.7;
  margin: 0;
}

/* Proof Points */
.about-proof {
  padding: 64px 40px;
}

.about-proof-inner {
  max-width: 960px;
  margin: 0 auto;
}

.about-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-proof-card {
  text-align: center;
  padding: 32px 16px;
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 12px;
  transition: all 0.2s;
}

.about-proof-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: #00b7e5;
}

.about-proof-value {
  font-size: 36px;
  font-weight: 800;
  color: #00b7e5;
  margin-bottom: 8px;
}

.about-proof-label {
  font-size: 14px;
  color: #5a6670;
  line-height: 1.5;
}

/* Story Section */
.about-story {
  padding: 0 40px 64px;
}

.about-story-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.about-story-label {
  font-size: 12px;
  font-weight: 700;
  color: #00b7e5;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-story-heading {
  font-size: 28px;
  font-weight: 800;
  color: #1a2b3c;
  margin: 0 0 20px;
}

.about-story-text {
  font-size: 16px;
  color: #5a6670;
  line-height: 1.8;
  margin: 0;
}

/* Logo Band */
.about-logos {
  padding: 48px 40px;
  background: #f0f3f7;
  border-top: 1px solid #e0e4ea;
  border-bottom: 1px solid #e0e4ea;
}

.about-logos-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.about-logos-label {
  font-size: 13px;
  font-weight: 600;
  color: #8a939d;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.about-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.about-logos-row img {
  height: 28px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.2s;
}

.about-logos-row img:hover {
  opacity: 0.8;
  filter: grayscale(0%);
}

/* CTA */
.about-cta {
  background: #1a2b3c;
  padding: 72px 40px;
  text-align: center;
}

.about-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.about-cta h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
}

.about-cta-sub {
  font-size: 16px;
  color: #8a9bab;
  line-height: 1.7;
  margin: 0 0 32px;
}

.about-cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.about-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #7ed321;
  color: #001e39;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.about-btn-primary:hover {
  background: #ffd012;
}

.about-btn-primary svg {
  width: 14px;
  height: 14px;
}

.about-btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.25);
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.about-btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero {
    padding: 48px 16px 40px;
  }
  .about-title {
    font-size: 32px;
  }
  .about-proof {
    padding: 48px 16px;
  }
  .about-proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-story {
    padding: 0 16px 48px;
  }
  .about-story-heading {
    font-size: 24px;
  }
  .about-logos {
    padding: 40px 16px;
  }
  .about-logos-row {
    gap: 24px;
  }
  .about-logos-row img {
    height: 22px;
  }
  .about-cta {
    padding: 48px 16px;
  }
  .about-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 28px;
  }
  .about-proof-grid {
    grid-template-columns: 1fr;
  }
  .about-proof-value {
    font-size: 28px;
  }
}

/* Mega Menu - Explore Further Buttons */
.feature-group .mega-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 6px 16px;
  background: #7ed321;
  color: #001e39;
  font-size: 12px;
  font-weight: 600;
  border-radius: 16px;
  transition: background 0.2s, transform 0.15s;
}
.feature-group .mega-explore-btn:hover {
  background: #ffd012;
  transform: translateY(-1px);
  color: #001e39;
}
.feature-group .mega-explore-btn span {
  font-size: 13px;
  transition: transform 0.2s;
}
.feature-group .mega-explore-btn:hover span {
  transform: translateX(2px);
}

.integration-more {
  font-size: 13px;
  font-weight: 600;
  color: #00b7e5;
  white-space: nowrap;
}
