/* ==========================================================================
   ABOUT PAGE
   Mostly prose, so the job is comfortable measure and clear hierarchy.
   ========================================================================== */

/* :: HERO :: */
#about-page .ab-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f6f9fd 0%, #eef2fb 100%);
  border-bottom: 1px solid var(--border);
  padding: 74px 0 78px;
}
#about-page .ab-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#d9dff6 1.5px, transparent 1.6px);
  background-size: 26px 26px;
  mask-image: radial-gradient(75% 80% at 25% 25%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(75% 80% at 25% 25%, #000 30%, transparent 100%);
  pointer-events: none;
}
#about-page .ab-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
#about-page .ab-title {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  line-height: 1.16;
  color: var(--darkBlue);
  margin-bottom: 20px;
}
#about-page .ab-title span {
  color: var(--primary);
}
#about-page .ab-lead {
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--lightBlue);
  max-width: 620px;
  margin-bottom: 28px;
}
#about-page .ab-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
#about-page .ab-visual {
  height: 400px;
  max-width: 260px;
  margin-left: auto;
}

/* :: SHARED SECTION FURNITURE :: */
#about-page .sec-title {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--darkBlue);
  margin-bottom: 18px;
}

/* :: STORY :: */
#about-page .ab-story p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--lightBlue);
  margin-bottom: 18px;
}
#about-page .ab-story p:last-child {
  margin-bottom: 0;
}

/* :: PRINCIPLES :: */
#about-page .pr-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 30px;
}
#about-page .pr-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--darkBlue);
  margin-bottom: 10px;
  padding-left: 16px;
  position: relative;
}
#about-page .pr-card h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 3px;
  width: 3px;
  border-radius: 2px;
  background: var(--primary);
}
#about-page .pr-card p {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--lightBlue);
  margin: 0;
}

/* :: STATS BAND :: */
#about-page .ab-stats {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 34px 0;
}
#about-page .stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
#about-page .stat {
  text-align: center;
  padding: 0 14px;
}
#about-page .stat:not(:first-child) {
  border-left: 1px solid var(--border);
}
#about-page .stat strong {
  display: block;
  font-size: 30px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 4px;
}
#about-page .stat span {
  font-size: 13px;
  color: var(--lightBlue);
}

/* :: PLATFORM :: */
#about-page .pf-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px 28px;
}
#about-page .pf-card .ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary-shadow);
  color: var(--primary);
  margin-bottom: 16px;
}
#about-page .pf-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--darkBlue);
  margin-bottom: 8px;
}
#about-page .pf-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--lightBlue);
  margin: 0;
}

/* :: SERVICES :: */
#about-page .sv-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
#about-page .sv-card:hover {
  border-color: rgba(78, 79, 235, 0.4);
  box-shadow: 0 14px 34px rgba(14, 41, 84, 0.08);
  transform: translateY(-2px);
}
#about-page .sv-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--darkBlue);
  margin-bottom: 10px;
}
#about-page .sv-card p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--lightBlue);
  margin-bottom: 20px;
  flex: 1 1 auto;
}
#about-page .sv-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}
#about-page .sv-link svg {
  transition: transform 0.2s ease;
}
#about-page .sv-card:hover .sv-link svg {
  transform: translateX(3px);
}

/* :: COMPANY :: */
#about-page .co-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 44px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 42px 44px;
}
#about-page .co-details h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--darkBlue);
  margin-bottom: 14px;
}
#about-page .co-details p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--lightBlue);
  margin-bottom: 18px;
}
#about-page .co-address {
  padding: 18px 22px;
  background: var(--light);
  border-radius: 10px;
  font-size: 14.5px !important;
  line-height: 1.8 !important;
}
#about-page .co-address strong {
  color: var(--darkBlue);
}
#about-page .co-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13.5px !important;
  margin-bottom: 0 !important;
}
#about-page .co-legal a {
  color: var(--primary);
  font-weight: 500;
}
#about-page .co-legal span {
  color: #cdd7e5;
}
#about-page .co-contact {
  border-left: 1px solid var(--border);
  padding-left: 40px;
}
#about-page .co-contact h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #9aa7c7;
  margin-bottom: 16px;
}
#about-page .co-contact ul {
  margin: 0 0 22px;
}
#about-page .co-contact li {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}
#about-page .co-contact li span {
  font-size: 12.5px;
  color: #9aa7c7;
}
#about-page .co-contact li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  word-break: break-all;
}

/* :: RESPONSIVE :: */
@media (max-width: 991px) {
  #about-page .stats-row {
    gap: 14px;
  }
  #about-page .stat strong {
    font-size: 25px;
  }
  #about-page .ab-hero {
    padding: 54px 0 58px;
  }
  #about-page .co-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    padding: 32px 28px;
  }
  #about-page .co-contact {
    border-left: 0;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 28px;
  }
}
@media (max-width: 767px) {
  #about-page .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 0;
  }
  #about-page .stat:nth-child(3) {
    border-left: 0;
  }
  #about-page .ab-cta .theme-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
