/* ═══ About Content ═══ */
.aboutSection { background: var(--gray-bg); padding: 60px 0 80px; }
.aboutInner { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

/* Welcome card */
.welcomeCard {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 48px 56px; display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: center;
  margin-bottom: 56px;
}
.welcomeImgWrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; }
.welcomeImgWrap img { width: 100%; height: 100%; object-fit: cover; }
.welcomeImgWrap::after { content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); border: 3px solid var(--teal); opacity: 0.3; }
.welcomeBadge {
  position: absolute; bottom: 20px; right: 20px; background: var(--teal); color: #fff;
  padding: 14px 20px; border-radius: var(--radius); font-weight: 700; font-size: 14px; line-height: 1.3;
  box-shadow: 0 4px 20px rgba(255,107,0,0.4);
}
.welcomeBadge span { display: block; font-size: 28px; font-weight: 900; }
.welcomeContent h2 { font-size: 28px; font-weight: 800; color: var(--text); margin-bottom: 20px; line-height: 1.3; }
.welcomeContent h2 em { color: var(--teal); font-style: normal; }
.welcomeContent p { font-size: 16px; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.welcomeHighlight {
  background: linear-gradient(135deg, var(--teal-light), #FFE0C0); border-left: 4px solid var(--teal);
  padding: 20px 24px; border-radius: 0 var(--radius) var(--radius) 0; margin-top: 24px;
  font-size: 17px; font-weight: 600; color: var(--teal-dark); line-height: 1.5;
}

/* Stats */
.statsGrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 56px; }
.statCard { text-align: center; padding: 32px 16px; border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); transition: all 0.3s; }
.statCard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.statIcon { width: 56px; height: 56px; border-radius: 50%; background: var(--teal); color: #fff; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.statIcon svg { width: 26px; height: 26px; }
.statNumber { font-size: 42px; font-weight: 900; color: var(--teal); margin-bottom: 4px; }
.statLabel { font-size: 14px; color: var(--text-mid); font-weight: 500; }

/* Section headings */
.sectionLabel { text-transform: uppercase; letter-spacing: 2px; font-size: 12px; font-weight: 700; color: var(--teal); margin-bottom: 8px; }
.sectionTitle { font-size: 32px; font-weight: 800; margin-bottom: 40px; color: var(--text); }

/* Values */
.valuesGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 56px; }
.valueCard { background: #fff; border-radius: var(--radius-lg); padding: 32px 24px; box-shadow: var(--shadow-sm); transition: all 0.35s; border: 1px solid rgba(0,0,0,0.04); }
.valueCard:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(255,107,0,0.2); }
.valueIcon { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, var(--teal-light), #FFE0C0); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.valueIcon svg { width: 24px; height: 24px; color: var(--teal); }
.valueCard h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.valueCard p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════
   LICENSES — Premium card grid with glassmorphism
   ═══════════════════════════════════════════════════════════ */
.licensesBlock {
  margin-bottom: 64px;
  padding: 48px 40px 44px;
  background: linear-gradient(135deg, #f8fffe 0%, #f0f9f7 40%, #fef9f3 100%);
  border-radius: 24px;
  border: 1px solid rgba(28,186,159,.1);
  position: relative;
  overflow: hidden;
}
.licensesBlock::before {
  content: '';
  position: absolute; top: -80px; right: -40px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(28,186,159,.08), transparent 70%);
  pointer-events: none;
}
.licensesBlock::after {
  content: '';
  position: absolute; bottom: -60px; left: -30px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,.06), transparent 70%);
  pointer-events: none;
}
.licensesBlock .sectionLabel { position: relative; z-index: 1; }
.licensesBlock .sectionTitle { position: relative; z-index: 1; margin-bottom: 12px; }
.licensesDesc {
  font-size: 15px; color: var(--text-mid); line-height: 1.7;
  max-width: 700px; margin-bottom: 36px;
  position: relative; z-index: 1;
}

.abtLicGrid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; position: relative; z-index: 1;
}

.abtLicCard {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 18px;
  border: 1px solid rgba(0,0,0,.04);
  text-decoration: none; color: inherit;
  position: relative; overflow: hidden;
  transition: all .45s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.abtLicCard::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  border-radius: 0 4px 4px 0;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform .45s cubic-bezier(.16,1,.3,1);
}
.abtLicCard::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 20px;
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.abtLicCard:nth-child(1)::before { background: linear-gradient(to bottom, #3b82f6, #2563eb); }
.abtLicCard:nth-child(1)::after { background: linear-gradient(135deg, rgba(59,130,246,.04), transparent 60%); }
.abtLicCard:nth-child(2)::before { background: linear-gradient(to bottom, #f59e0b, #d97706); }
.abtLicCard:nth-child(2)::after { background: linear-gradient(135deg, rgba(245,158,11,.04), transparent 60%); }
.abtLicCard:nth-child(3)::before { background: linear-gradient(to bottom, #10b981, #059669); }
.abtLicCard:nth-child(3)::after { background: linear-gradient(135deg, rgba(16,185,129,.04), transparent 60%); }

.abtLicCard:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.1), 0 2px 8px rgba(0,0,0,.04);
  border-color: transparent;
}
.abtLicCard:hover::before { transform: scaleY(1); }
.abtLicCard:hover::after { opacity: 1; }

.abtLicCardIcon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; z-index: 1;
  transition: all .45s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.abtLicCardIcon svg { width: 26px; height: 26px; transition: all .3s; }
.abtLicCardIcon.medical { background: linear-gradient(135deg, #3b82f6, #1d4ed8); color: #fff; }
.abtLicCardIcon.contract { background: linear-gradient(135deg, #f59e0b, #d97706); color: #fff; }
.abtLicCardIcon.org { background: linear-gradient(135deg, #10b981, #047857); color: #fff; }
.abtLicCard:hover .abtLicCardIcon { transform: scale(1.1) rotate(-3deg); }

.abtLicCardBody { flex: 1; position: relative; z-index: 1; }
.abtLicCardTitle {
  font-size: 17px; font-weight: 700; color: var(--navy);
  line-height: 1.4; margin-bottom: 8px;
  transition: color .3s;
}
.abtLicCard:hover .abtLicCardTitle { color: var(--teal-dark); }
.abtLicCardDesc { font-size: 13.5px; color: #7a8599; line-height: 1.6; }

.abtLicCardMeta {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid #f0f2f5;
  position: relative; z-index: 1;
}
.abtLicCardCount {
  font-size: 12px; font-weight: 700; color: var(--text-light);
  background: #f0f4f8; padding: 5px 14px; border-radius: 50px;
  transition: all .3s;
}
.abtLicCard:hover .abtLicCardCount { background: var(--teal-light); color: var(--teal-dark); }
.abtLicCardArrow {
  width: 34px; height: 34px; border-radius: 50%;
  background: #f0f4f8;
  display: flex; align-items: center; justify-content: center;
  transition: all .35s cubic-bezier(.16,1,.3,1);
}
.abtLicCardArrow svg { width: 16px; height: 16px; color: #aaa; transition: all .3s; }
.abtLicCard:hover .abtLicCardArrow { background: var(--teal); box-shadow: 0 4px 12px rgba(28,186,159,.3); }
.abtLicCard:hover .abtLicCardArrow svg { color: #fff; transform: translateX(2px); }

.licensesFooter { text-align: center; margin-top: 32px; position: relative; z-index: 1; }
.licensesBtn {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--teal-dark);
  border: 2px solid var(--teal);
  padding: 14px 36px; border-radius: 50px;
  font-size: 15px; font-weight: 700;
  transition: all .35s cubic-bezier(.16,1,.3,1);
  text-decoration: none;
}
.licensesBtn svg { width: 18px; height: 18px; transition: transform .3s; }
.licensesBtn:hover {
  background: var(--teal); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(28,186,159,.3);
}
.licensesBtn:hover svg { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════════════
   REVIEWS CAROUSEL — Dark immersive section
   ═══════════════════════════════════════════════════════════ */
.abtRevBlock {
  padding: 64px 0 56px;
  border-radius: 24px;
  margin-bottom: 56px;
  background: linear-gradient(135deg, #0f1d2e 0%, #152a42 50%, #1a3350 100%);
  position: relative; overflow: hidden;
}
.abtRevBlock::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 40%, rgba(28,186,159,.15), transparent 55%),
    radial-gradient(ellipse at 85% 70%, rgba(59,130,246,.08), transparent 50%),
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.03), transparent 40%);
  pointer-events: none;
}
/* Subtle top shine */
.abtRevBlock::after {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(28,186,159,.3), transparent);
  pointer-events: none;
}

.abtRevInner { max-width: 1320px; margin: 0 auto; padding: 0 40px; position: relative; }

.abtRevHeader {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px; gap: 20px;
}
.abtRevRating { display: flex; align-items: center; gap: 10px; margin-top: 12px; }
.abtRevRatingNum {
  font-size: 32px; font-weight: 900;
  background: linear-gradient(135deg, var(--teal), #2dd1b1);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.abtRevRatingStars { display: flex; gap: 3px; }
.abtRevStar { font-size: 20px; color: rgba(255,255,255,.15); font-style: normal; transition: color .3s; }
.abtRevStar--on { color: #fbbf24; text-shadow: 0 0 8px rgba(251,191,36,.4); }
.abtRevRatingTotal {
  font-size: 14px; color: rgba(255,255,255,.45);
  margin-left: 6px; font-weight: 500;
}

.abtRevAllLink {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.6); font-size: 14px; font-weight: 600;
  text-decoration: none; transition: all .3s;
  white-space: nowrap; flex-shrink: 0;
  padding: 10px 20px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}
.abtRevAllLink svg { width: 16px; height: 16px; transition: transform .3s; }
.abtRevAllLink:hover {
  color: #fff; border-color: var(--teal);
  background: rgba(28,186,159,.12);
}
.abtRevAllLink:hover svg { transform: translateX(4px); }

/* Carousel container */
.abtRevCarousel { position: relative; }
.abtRevTrack {
  display: flex; gap: 24px; overflow-x: auto;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  padding: 8px 0 20px;
}
.abtRevTrack::-webkit-scrollbar { display: none; }

/* Glass nav buttons */
.abtRevNav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .35s cubic-bezier(.16,1,.3,1);
  z-index: 5;
}
.abtRevNav svg { width: 22px; height: 22px; }
.abtRevNav:hover {
  background: var(--teal); color: #fff;
  border-color: var(--teal);
  box-shadow: 0 6px 24px rgba(28,186,159,.4);
  transform: translateY(-50%) scale(1.08);
}
.abtRevNav.hidden { opacity: 0; pointer-events: none; }
.abtRevNavPrev { left: -12px; }
.abtRevNavNext { right: -12px; }

/* Review card — premium feel */
.abtRevCard {
  flex: 0 0 370px; scroll-snap-align: start;
  background: linear-gradient(145deg, #fff 0%, #fafbfc 100%);
  border-radius: 22px; padding: 30px 28px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  transition: all .4s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  border: 1px solid rgba(255,255,255,.8);
}
.abtRevCard:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 56px rgba(28,186,159,.12), 0 4px 16px rgba(0,0,0,.06);
}

/* Decorative quote */
.abtRevCardQuote {
  position: absolute; top: 18px; right: 22px;
  font-size: 56px; font-weight: 900; line-height: 1;
  font-family: Georgia, 'Times New Roman', serif;
  background: linear-gradient(135deg, var(--teal), rgba(28,186,159,.3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .2;
}

.abtRevCardStars { margin-bottom: 4px; display: flex; gap: 3px; }
.abtRevCardStars .abtRevStar { font-size: 18px; }
.abtRevCardStars .abtRevStar--on { color: #fbbf24; text-shadow: none; }
.abtRevCardStars .abtRevStar:not(.abtRevStar--on) { color: #e5e7eb; }

.abtRevCardText {
  font-size: 14.5px; line-height: 1.7; color: #5a6577;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical;
  overflow: hidden; flex: 1; font-style: italic;
}
.abtRevCardText p { margin: 0 0 6px; }
.abtRevCardText p:last-child { margin: 0; }

.abtRevCardAuthor {
  display: flex; align-items: center; gap: 14px;
  margin-top: auto; padding-top: 14px;
  border-top: 1px solid #f0f2f5;
}
.abtRevCardAvatar {
  width: 44px; height: 44px; border-radius: 14px;
  background: linear-gradient(135deg, var(--teal), #2dd1b1);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #fff; font-size: 16px; flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(28,186,159,.25);
}
.abtRevCardName { font-size: 14px; font-weight: 700; color: var(--navy); }
.abtRevCardVerified {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--teal); color: #fff;
  font-size: 10px; font-weight: 900;
  margin-left: 4px; vertical-align: middle;
}
.abtRevCardDate { font-size: 12px; color: #9ca3af; margin-top: 1px; }

/* Dots — pill style */
.abtRevDots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.abtRevDot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.18); border: none;
  cursor: pointer; transition: all .35s cubic-bezier(.16,1,.3,1);
  padding: 0;
}
.abtRevDot:hover { background: rgba(255,255,255,.35); }
.abtRevDot.active {
  background: var(--teal); width: 32px; border-radius: 4px;
  box-shadow: 0 0 10px rgba(28,186,159,.4);
}

/* ═══ CTA ═══ */
.aboutCta { padding: 64px 24px; background: linear-gradient(135deg, var(--teal-dark), var(--teal), #2dd1b1); text-align: center; position: relative; overflow: hidden; }
.aboutCta::before { content: ''; position: absolute; top: -30%; right: -10%; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,0.06); }
.aboutCtaTitle { color: #fff; font-size: 36px; font-weight: 800; margin-bottom: 12px; position: relative; z-index: 1; }
.aboutCtaSub { color: rgba(255,255,255,0.85); font-size: 17px; max-width: 550px; margin: 0 auto 28px; position: relative; z-index: 1; }
.aboutCtaBtns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; z-index: 1; }
.ctaBtnWhite { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--teal-dark); padding: 14px 32px; border-radius: 50px; font-size: 15px; font-weight: 700; transition: all 0.3s; text-decoration: none; }
.ctaBtnWhite:hover { transform: translateY(-2px); box-shadow: 0 6px 30px rgba(0,0,0,0.15); }
.ctaBtnOutline { display: inline-flex; align-items: center; gap: 8px; border: 2px solid rgba(255,255,255,0.5); color: #fff; padding: 12px 30px; border-radius: 50px; font-size: 15px; font-weight: 600; transition: all 0.3s; text-decoration: none; }
.ctaBtnOutline:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

/* ═══ Responsive ═══ */
@media (max-width: 1024px) {
  .aboutInner { max-width: 100%; }
  .welcomeCard { grid-template-columns: 1fr; padding: 32px 24px; }
  .welcomeImgWrap { max-width: 350px; margin: 0 auto; }
  .statsGrid { grid-template-columns: repeat(2, 1fr); }
  .valuesGrid { grid-template-columns: repeat(2, 1fr); }
  .abtLicGrid { grid-template-columns: 1fr; }
  .licensesBlock { padding: 36px 28px; }
  .abtRevInner { padding: 0 24px; }
  .abtRevCard { flex: 0 0 320px; }
  .abtRevNavPrev { left: 4px; }
  .abtRevNavNext { right: 4px; }
}
@media (max-width: 768px) {
  .statsGrid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .valuesGrid { grid-template-columns: 1fr; }
  .licensesBlock { padding: 28px 20px; border-radius: 18px; }
  .abtRevBlock { padding: 48px 0 40px; border-radius: 18px; }
  .abtRevHeader { flex-direction: column; align-items: flex-start; }
  .abtRevCard { flex: 0 0 290px; padding: 24px 22px; }
  .abtRevNav { width: 42px; height: 42px; }
  .abtRevNav svg { width: 18px; height: 18px; }
}
@media (max-width: 480px) {
  .abtRevCard { flex: 0 0 calc(100vw - 72px); }
  .abtRevNav { display: none; }
}
