/* ===== BASE ===== */

.about-page {
  background: var(--main-white-pure-color)
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter",
    "SF Pro Text", sans-serif;
  color: #0f172a;
}

.about-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}

/* ===== HERO ===== */

.about-hero {
  background: #ffffff;
  border-radius: 28px;
  padding: 22px 24px 26px;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.12);
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(50, 93, 230, 0.2),
    transparent 58%
  );
  opacity: 0.7;
  pointer-events: none;
}

.about-hero > * {
  position: relative;
  z-index: 1;
}

/* badge */

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(225, 232, 254, 0.95);
  color: #325de6;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.about-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #325de6;
}

/* layout */

.about-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: flex-start;
}

@media (max-width: 960px) {
  .about-hero-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* text */

.about-hero-text h1 {
  font-size: 30px;
  line-height: 1.25;
  margin: 0 0 10px;
  color: #000f1e;
}

.about-hero-lead {
  font-size: 15px;
  line-height: 1.9;
  color: #111827;
  margin: 0 0 10px;
  font-weight: 500;
}

.about-hero-sub {
  font-size: 14px;
  line-height: 1.9;
  color: #4b5563;
  margin: 0 0 14px;
  font-weight: 500;
}

.about-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-tag {
  padding: 5px 12px;
  border-radius: 999px;
  background: #f3f4ff;
  font-size: 12px;
  color: #325de6;
  font-weight: 500;
}

/* hero right side */

.about-hero-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-hero-card {
  background: rgba(248, 249, 255, 0.95);
  border-radius: 18px;
  padding: 12px 14px;
}

.about-hero-card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5f6e95;
  margin: 0 0 4px;
  font-weight: 700;
}

.about-hero-card-text {
  font-size: 13px;
  line-height: 1.9;
  color: #4b5563;
  margin: 0;
  font-weight: 500;
}

.about-hero-stats {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
}

@media (max-width: 640px) {
  .about-hero-stats {
    grid-template-columns: minmax(0, 1fr);
  }
}

.about-stat {
  background: #ffffff;
  border-radius: 16px;
  padding: 10px 11px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.about-stat-label {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  background: #e1e8fe;
  font-size: 11px;
  color: #325de6;
  font-weight: 700;
  margin-bottom: 6px;
}

.about-stat-text {
  font-size: 13px;
  line-height: 1.8;
  color: #4b5563;
  margin: 0;
  font-weight: 500;
}

/* ===== GENERIC SECTION ===== */

.about-section {
  background: #ffffff;
  border-radius: 24px;
  padding: 20px 22px 22px;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.08);
  margin-bottom: 24px;
}

.about-section-heading {
  max-width: 720px;
  margin-bottom: 18px;
}

.about-section-heading--center {
  max-width: 760px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.about-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--main-primary-color)
  font-weight: 600;
  margin-bottom: 6px;
  display: inline-block;
  font-weight: 600;
}

.about-section-heading h2 {
  font-size: 22px;
  margin: 0 0 8px;
  color: #0b3558;
}

.about-section-heading p {
  font-size: 14px;
  line-height: 1.9;
  color: #4b5563;
  margin: 0;
  font-weight: 500;
}

/* layout variations */

.about-section--split .about-section-heading {
  margin-bottom: 16px;
}

/* ===== GRID HELPERS ===== */

.about-grid {
  display: grid;
  gap: 16px;
}

.about-grid--2 {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.about-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 960px) {
  .about-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .about-grid--2,
  .about-grid--3 {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ===== CARDS & TEXT BLOCKS ===== */

.about-card {
  background: #f6f7fb;
  border-radius: 18px;
  padding: 14px 14px 15px;
}

.about-card h3 {
  font-size: 16px;
  margin: 0 0 6px;
  color: #0b3558;
}

.about-text-block h3 {
  font-size: 16px;
  margin: 0 0 6px;
  color: #0b3558;
}

.about-text-block {
  background: #f6f7fb;
  border-radius: 18px;
  padding: 14px 14px 15px;
}

/* mini cards */

.about-mini-card {
  background: #f6f7fb;
  border-radius: 18px;
  padding: 12px 13px;
}

.about-mini-label {
  font-size: 12px;
  font-weight: 700;
  color: #325de6;
  margin-bottom: 4px;
  display: block;
}

.about-mini-card p {
  font-size: 13px;
  line-height: 1.9;
  color: #4b5563;
  margin: 0;
  font-weight: 500;
}

/* ===== BULLETS ===== */

.about-bullets {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-bullets li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.8;
  color: #4b5563;
  font-weight: 500;
}

.about-bullets li::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #325de6;
}

/* ===== VALUES GRID ===== */

.about-values-grid {
  margin-top: 16px;
}

.about-value-card {
  background: #f6f7fb;
  border-radius: 18px;
  padding: 13px 14px 14px;
}

.about-value-card h3 {
  font-size: 15px;
  margin: 6px 0 4px;
  color: #0b3558;
}

.about-value-card p {
  font-size: 13px;
  line-height: 1.9;
  color: #4b5563;
  margin: 0;
  font-weight: 500;
}

.about-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e1e8fe;
  font-size: 11px;
  font-weight: 600;
  color: #325de6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== CTA ===== */

.about-cta {
  margin-top: 8px;
}

.about-cta-card {
  background: #e4ebff;
  border-radius: 26px;
  padding: 22px 24px 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  box-shadow: 0 20px 52px rgba(15, 23, 42, 0.12);
}

.about-cta-textblock h2 {
  font-size: 20px;
  margin: 4px 0 8px;
  color: #0b3558;
}

.about-cta-textblock p {
  font-size: 14px;
  line-height: 1.9;
  color: #1f2937;
  margin: 0;
  font-weight: 500;
}

.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

/* buttons */

.about-btn-primary,
.about-btn-secondary {
  border-radius: 999px;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease,
    background 0.12s ease;
}

.about-btn-primary {
  background: linear-gradient(135deg, #4b6bff, #325de6);
  color: #ffffff;
  box-shadow: 0 14px 36px rgba(50, 93, 230, 0.7);
}

.about-btn-secondary {
  background: #ffffff;
  color: #111827;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
}

.about-btn-primary:hover,
.about-btn-secondary:hover {
  transform: translateY(-1px);
}

.about-btn-primary:hover {
  box-shadow: 0 20px 52px rgba(50, 93, 230, 0.8);
}

.about-btn-secondary:hover {
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.16);
}

.about-btn-primary:active,
.about-btn-secondary:active {
  transform: translateY(0);
  opacity: 0.96;
}

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

@media (max-width: 960px) {
  .about-container {
    padding: 56px 20px 80px;
  }

  .about-cta-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .about-hero {
    padding: 18px 16px 22px;
    border-radius: 22px;
  }

  .about-hero-text h1 {
    font-size: 24px;
  }

  .about-section {
    padding: 18px 16px 20px;
    border-radius: 20px;
  }

  .about-cta-card {
    padding: 18px 16px 20px;
    border-radius: 22px;
  }
}
