/*--------------------------------------------------------------
# About Page Hero (.about-hero)
--------------------------------------------------------------*/
.about-hero {
  position: relative;
  overflow: hidden;
  padding: 130px 0 72px;
  background: linear-gradient(135deg, #EFF6FF 0%, #F0FDFA 55%, #F8FAFC 100%);
}

/* Background blobs + dot grid */
.about-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ah-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  animation: ahBlobDrift 14s ease-in-out infinite alternate;
}

.ah-blob-1 {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(15,76,129,0.16) 0%, transparent 70%);
  top: -160px;
  left: -120px;
  animation-delay: 0s;
}

.ah-blob-2 {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(0,184,169,0.14) 0%, transparent 70%);
  bottom: -100px;
  right: -80px;
  animation-delay: -7s;
}

@keyframes ahBlobDrift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(28px, 18px) scale(1.05); }
}

.ah-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(15,76,129,0.09) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.7;
}

/* Container */
.about-hero-container {
  position: relative;
  z-index: 1;
}

/* Headline */
.ah-headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #0F172A;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 10px 0 14px;
}

.ah-highlight {
  background: linear-gradient(135deg, #0F4C81 0%, #00B8A9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtext */
.ah-subtext {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 28px;
}

/* CTA row */
.ah-cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.ah-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: linear-gradient(135deg, #0F4C81, #00B8A9);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(15,76,129,0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.ah-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(15,76,129,0.32);
  color: #fff;
}

.ah-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: transparent;
  color: #0F4C81;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 50px;
  border: 1.5px solid rgba(15,76,129,0.28);
  text-decoration: none;
  transition: all 0.22s ease;
}

.ah-btn-ghost:hover {
  background: rgba(15,76,129,0.06);
  border-color: #0F4C81;
  color: #0F4C81;
  transform: translateY(-2px);
}

.ah-btn-ghost i { transition: transform 0.22s ease; }
.ah-btn-ghost:hover i { transform: translateX(4px); }

/* Stats bar */
.ah-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 4px 20px rgba(15,23,42,0.06);
  width: fit-content;
  max-width: 100%;
}

.ah-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  text-align: center;
}

.ah-stat strong {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.ah-stat span {
  font-size: 0.70rem;
  color: #64748B;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.ah-stat-divider {
  width: 1px;
  height: 36px;
  background: #E2E8F0;
  flex-shrink: 0;
}

/* Image mosaic */
.ah-mosaic {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ah-img-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(15,76,129,0.14);
}

.ah-img-main img,
.ah-img-main video {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.ah-img-main:hover img,
.ah-img-main:hover video { transform: scale(1.04); }

.ah-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ah-img-thumb {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(15,23,42,0.09);
}

.ah-img-thumb img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.ah-img-thumb:hover img { transform: scale(1.06); }

/* Hover overlay on all images */
.ah-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,76,129,0.28) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.ah-img-main:hover .ah-img-overlay,
.ah-img-thumb:hover .ah-img-overlay { opacity: 1; }

/* Floating badge */
.ah-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 8px 24px rgba(15,23,42,0.12);
}

.ah-badge > i {
  font-size: 1.3rem;
  color: #00B8A9;
  flex-shrink: 0;
}

.ah-badge div {
  display: flex;
  flex-direction: column;
}

.ah-badge strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.2;
}

.ah-badge span {
  font-size: 0.72rem;
  color: #64748B;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 991px) {
  .about-hero { padding: 110px 0 56px; }
  .ah-img-main img, .ah-img-main video { height: 260px; }
  .ah-img-thumb img { height: 140px; }
}

@media (max-width: 767px) {
  .about-hero { padding: 90px 0 40px; }
  .ah-headline { font-size: clamp(1.75rem, 6vw, 2.4rem); }
  .ah-subtext { font-size: 0.95rem; }
  .ah-cta-row { flex-direction: column; align-items: stretch; }
  .ah-btn-primary, .ah-btn-ghost { justify-content: center; }
  .ah-stats { width: 100%; justify-content: space-around; padding: 14px 10px; }
  .ah-stat { padding: 0 10px; }
  .ah-img-main img, .ah-img-main video { height: 220px; }
  .ah-img-thumb img { height: 120px; }
}

@media (max-width: 480px) {
  .ah-stat-divider { display: none; }
  .ah-stats { flex-wrap: wrap; gap: 12px; }
  .ah-stat { padding: 6px 12px; }
}

/*--------------------------------------------------------------
# WWA Bento Cards
--------------------------------------------------------------*/
.wwa-bento {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  background: #fff;
  box-shadow: 0 2px 12px rgba(15,23,42,0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.wwa-bento::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bc, #0F4C81), color-mix(in srgb, var(--bc, #0F4C81), #00B8A9 50%));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 2;
}

.wwa-bento:hover::before { transform: scaleX(1); }

.wwa-bento:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 44px rgba(15,76,129,0.12);
  border-color: color-mix(in srgb, var(--bc, #0F4C81), transparent 75%);
}

/* Image area */
.wwa-bento-img {
  position: relative;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}

.wwa-bento-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.wwa-bento:hover .wwa-bento-img img { transform: scale(1.07); }

.wwa-bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    color-mix(in srgb, var(--bc, #0F4C81), transparent 30%) 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.wwa-bento:hover .wwa-bento-overlay { opacity: 1; }

/* Body */
.wwa-bento-body {
  padding: 20px 18px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wwa-bento-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bb, rgba(15,76,129,0.10));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
  flex-shrink: 0;
}

.wwa-bento-icon i {
  font-size: 1.2rem;
  color: var(--bc, #0F4C81);
  transition: color 0.25s ease;
}

.wwa-bento:hover .wwa-bento-icon {
  background: var(--bc, #0F4C81);
  transform: scale(1.08) rotate(-4deg);
}

.wwa-bento:hover .wwa-bento-icon i { color: #fff; }

.wwa-bento-body h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0;
  letter-spacing: -0.01em;
  transition: color 0.25s ease;
}

.wwa-bento:hover .wwa-bento-body h4 { color: var(--bc, #0F4C81); }

.wwa-bento-body p {
  font-size: 0.84rem;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 767px) {
  .wwa-bento-img { height: 150px; }
}

/*--------------------------------------------------------------
# WWA Section — full redesign
--------------------------------------------------------------*/
.wwa-section {
  padding: 56px 0 48px;
  background: #fff;
}

/* Header */
.wwa-header {
  text-align: center;
  margin-bottom: 28px;
}

.wwa-headline {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 8px 0 10px;
}

.wwa-hl {
  background: linear-gradient(135deg, #0F4C81 0%, #00B8A9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wwa-sub {
  font-size: 1rem;
  color: #64748B;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Pillar cards */
.wwa-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 22px 18px 18px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.wwa-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ic, #0F4C81), #00B8A9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.wwa-card:hover::before { transform: scaleX(1); }

.wwa-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(15,23,42,0.09);
  border-color: rgba(15,76,129,0.14);
}

.wwa-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--ib, rgba(15,76,129,0.10));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: background 0.22s ease, transform 0.22s ease;
}

.wwa-card-icon i {
  font-size: 1.25rem;
  color: var(--ic, #0F4C81);
  transition: color 0.22s ease;
}

.wwa-card:hover .wwa-card-icon {
  background: var(--ic, #0F4C81);
  transform: scale(1.08) rotate(-4deg);
}

.wwa-card:hover .wwa-card-icon i { color: #fff; }

.wwa-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 5px;
  letter-spacing: -0.01em;
  transition: color 0.22s ease;
}

.wwa-card:hover h4 { color: var(--ic, #0F4C81); }

.wwa-card p {
  font-size: 0.845rem;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
}

.wwa-card-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ic, #0F4C81), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s ease;
}

.wwa-card:hover .wwa-card-line { transform: scaleX(1); }

/* Mission / Vision cards */
.wwa-mv-card {
  background: #FAFBFC;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 24px 22px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.wwa-mv-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mc, #0F4C81), #00B8A9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.wwa-mv-card:hover::before { transform: scaleX(1); }

.wwa-mv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(15,23,42,0.08);
}

.wwa-mv-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.wwa-mv-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: color-mix(in srgb, var(--mc, #0F4C81), transparent 88%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.22s ease, transform 0.22s ease;
}

.wwa-mv-icon i {
  font-size: 1.1rem;
  color: var(--mc, #0F4C81);
  transition: color 0.22s ease;
}

.wwa-mv-card:hover .wwa-mv-icon {
  background: var(--mc, #0F4C81);
  transform: scale(1.08) rotate(-4deg);
}

.wwa-mv-card:hover .wwa-mv-icon i { color: #fff; }

.wwa-mv-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mc, #0F4C81);
  background: color-mix(in srgb, var(--mc, #0F4C81), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--mc, #0F4C81), transparent 75%);
  padding: 3px 10px;
  border-radius: 50px;
}

.wwa-mv-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  line-height: 1.35;
}

.wwa-mv-card p {
  font-size: 0.855rem;
  color: #64748B;
  line-height: 1.65;
  margin: 0 0 14px;
}

.wwa-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wwa-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #334155;
  padding: 5px 0;
  border-bottom: 1px solid #F1F5F9;
}

.wwa-list li:last-child { border-bottom: none; }

.wwa-list li i {
  color: #00B8A9;
  font-size: 0.9rem;
  flex-shrink: 0;
  font-weight: 700;
}

/*--------------------------------------------------------------
# Pre-footer CTA (.ab-cta-section)
--------------------------------------------------------------*/
.ab-cta-section {
  background: linear-gradient(135deg, #0a3560 0%, #0F4C81 50%, #0d6e6e 100%);
  position: relative;
  overflow: hidden;
  padding: 48px 0;
}

.ab-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 15% 50%, rgba(0,184,169,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 85% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.ab-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left copy */
.ab-cta-copy { flex: 1; min-width: 260px; }

.ab-cta-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5EEAD4;
  background: rgba(94,234,212,0.12);
  border: 1px solid rgba(94,234,212,0.28);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.ab-cta-copy h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 8px;
}

.ab-cta-copy p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin: 0 0 20px;
  max-width: 420px;
}

.ab-cta-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ab-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: #fff;
  color: #0F4C81;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.ab-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.24);
  background: #f0f9ff;
  color: #0F4C81;
}

.ab-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: rgba(255,255,255,0.10);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.30);
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: all 0.22s ease;
}

.ab-btn-ghost:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.50);
  transform: translateY(-2px);
  color: #fff;
}

.ab-btn-ghost i { transition: transform 0.22s ease; }
.ab-btn-ghost:hover i { transform: translateX(4px); }

/* Right trust pills */
.ab-cta-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  flex-shrink: 0;
}

.ab-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 12px 14px;
  backdrop-filter: blur(8px);
  transition: background 0.22s ease, transform 0.22s ease;
}

.ab-trust-item:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}

.ab-trust-item > i {
  font-size: 1.1rem;
  color: #5EEAD4;
  flex-shrink: 0;
  margin-top: 2px;
}

.ab-trust-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.ab-trust-item span {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  margin-top: 1px;
}

/* Responsive */
@media (max-width: 991px) {
  .ab-cta-inner { flex-direction: column; gap: 28px; }
  .ab-cta-trust { grid-template-columns: repeat(2, 1fr); width: 100%; }
  .wwa-section { padding: 40px 0 28px; }
}

@media (max-width: 575px) {
  .ab-cta-section { padding: 36px 0; }
  .ab-cta-trust { grid-template-columns: 1fr; }
  .ab-cta-btns { flex-direction: column; align-items: stretch; }
  .ab-btn-primary, .ab-btn-ghost { justify-content: center; }
  .wwa-section { padding: 28px 0 20px; }
}
