/* HERO */
.about-hero {
  background: linear-gradient(145deg, #0f766e 0%, #0284c7 55%, #1d4ed8 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  min-height: 340px;
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.about-hero-inner {
  flex: 0 0 40%;
  max-width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 32px 32px 40px;
  position: relative;
  z-index: 2;
}
.about-hero h1 {
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 16px;
}
.about-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 10px;
}
.about-hero-sub2 {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
}
.about-hero-img-full {
  flex: 0 0 60%;
  width: 60%;
  position: relative;
  z-index: 2;
}
.about-hero-img-full img {
  width: 100%;
  
        min-height: 380px !important;
        max-height: 420px !important;
  
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .about-hero {
    flex-direction: column;
  }
  .about-hero-inner {
    flex: unset;
    max-width: 100%;
    padding: 28px 20px;
  }
  .about-hero-img-full {
    flex: unset;
    width: 100%;
  }
  .about-hero-img-full img {
    min-height: 220px;
    max-height: 260px;
  }
}
/* SHARED CONTAINER */
.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* STATS */
.about-stats {
  padding: 20px 24px;
  background: #eaf0f0;
  border-bottom: 1px solid #f0eeff;
}
.about-stats-header {
  text-align: center;
  margin-bottom: 10px;
}
.about-stats-header h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 12px;
}
.about-stats-header p {
  font-size: 16px;
  color: #000;
  line-height: 1.6;
  text-align: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 20px 16px;
  border-right: 1px solid #ede9fe;
}
.stat-item:last-child {
  border-right: none;
}
.stat-item > i {
  font-size: 20px;
  color: #7c5cbf;
  margin-bottom: 4px;
}
.stat-value {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a2e;
  white-space: nowrap;
  display: block;
}
.stat-label {
  font-size: 16px;
  color: #000;
  line-height: 1.4;
  display: block;
}
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid #ede9fe;
  }
}
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* OPERATING MODEL */
.about-model {
  padding: 20px 24px;
  background: #eaf0f0;;
}
.about-model h2 {
font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: #1a1a2e;
  margin: 12px 0 12px;
  text-align: center;
  margin-bottom: 10px;
}
.about-model-sub {
  color: #666;
  font-size: 16px;
  max-width: 680px;
  margin-bottom: 24px;
  line-height: 1.7;
}
.model-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.model-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0f766e, #0284c7);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3);
}
.model-pill i {
  font-size: 13px;
  opacity: 0.9;
}
.model-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 10px;
}
.model-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.model-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.model-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #7c5cbf;
}
.model-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
}
.model-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}
.about-outcome {
  background: linear-gradient(135deg, #7c5cbf, #5b3fa0);
  border-radius: 16px;
  padding: 36px 40px;
}
.outcome-inner {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.outcome-inner > i {
  font-size: 32px;
  color: #f0e6ff;
  flex-shrink: 0;
  margin-top: 4px;
}
.outcome-inner h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.outcome-inner p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

/* LEADERSHIP — new card style */
.about-leadership {
  padding: 10px 24px 48px;
  background: #eaf0f0;
}
.about-leadership h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: #1a1a2e;
  margin: 12px 0 20px;
  text-align: center;
}
.about-leadership-sub {
  font-size: 15px;
  color: #000000;
  line-height: 1.8;
  width: 90%;
  margin: 0 auto 16px;
  text-align: left;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.team-grid-row2 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 675px;
  margin: 20px auto 0;
}

.team-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.team-photo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.35s ease;
}

.team-card:hover .team-photo-wrap img {
  transform: scale(1.04);
}

.team-info {
  padding: 16px 14px 20px;
}

.team-name {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 5px;
}

.team-role {
  font-size: 13px;
  color: #0d0d2b;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid-row2 { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
}
@media (max-width: 540px) {
  .team-grid, .team-grid-row2 { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
}

/* CTA */
.about-cta {
  background: linear-gradient(135deg, #0d0d2b 0%, #1a0a3d 50%, #0d1b4d 100%);
  padding: 32px 24px;
  text-align: center;
}
.about-cta h2 {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.about-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  text-align: center;
  margin-bottom: 36px;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #e85d26;
  color: #fff;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  transition:
    background 0.2s,
    transform 0.2s;
}
.btn-cta:hover {
  background: #cf4e1a;
  transform: translateY(-2px);
}

/* INTERSECTION BANNER */
.about-intersection {
  background: linear-gradient(135deg, #0d0d2b 0%, #1a0a3d 50%, #0d1b4d 100%);
  padding: 20px 24px;
  position: relative;
  overflow: hidden;
}
.about-intersection::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 80% 50%,
    rgba(124, 92, 191, 0.2) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.about-intersection-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-int-text h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 14px 0 24px;
}
.about-int-highlight {
  background: linear-gradient(90deg, #a78bfa, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-int-text p {
  font-size: 16px;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-int-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-network-canvas {
  width: 100%;
  height: 420px;
  border-radius: 20px;
  display: block;
}
@media (max-width: 768px) {
  .about-intersection-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stat-value{
    font-size: 22px !important;
  }
}

/* RETAIL DOMAIN EXPERTISE */
.about-domain {
  background: #eaf0f0;
  padding: 20px 24px;
}
.about-domain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.about-domain-item {
  display: flex;
  flex-direction: column;
  padding: 0 40px;
  border-left: 3px solid #c5d5d5;
}
.about-domain-item:first-child {
  border-left: none;
  padding-left: 0;
}
.about-domain-num {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 900;
  color: #0d2b5e;
  line-height: 1;
  margin-bottom: 6px;
  display: inline-block;
}
.about-domain-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #000;
}
.about-domain-sub {
  font-size: 15px;
  margin-top: 4px;
  color: #000;
}
@media (max-width: 768px) {
  .about-domain-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .about-domain-item {
    border-left: 3px solid #c5d5d5;
    padding-left: 20px;
  }
  .about-domain-item:first-child {
    border-left: 3px solid #c5d5d5;
    padding-left: 20px;
  }
}

/* VALUES SECTION */
.about-values {
  background: linear-gradient(135deg, #0d0d2b 0%, #1a0a3d 50%, #0d1b4d 100%);
  padding: 20px 24px;
  position: relative;
  overflow: hidden;
}
.about-values::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(124, 92, 191, 0.2) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.about-values-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
.about-values-header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #fff;
  margin-top: 12px;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.about-value-card {
  border-radius: 20px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  border: none;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  justify-content: flex-start;
}
.about-value-card::before {
  display: none;
}
.about-value-card::after {
  display: none;
}

.about-value-card:nth-child(1) {
  background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
}
.about-value-card:nth-child(2) {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}
.about-value-card:nth-child(3) {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}
.about-value-card:nth-child(4) {
  background: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
}
.about-value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}
.about-value-num {
  font-size: 48px;
  font-weight: 900;
  color: rgba(167, 139, 250, 0.15);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
}
.about-value-icon {
  display: none;
}
.about-value-card h3 {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  margin-top: 0;
  color: #fff;
}
.about-value-card p {
  font-size: 16px;
  color: #fff;
  line-height: 1.75;
  flex: 1;
}
@media (max-width: 900px) {
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .about-values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .model-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .model-grid { grid-template-columns: 1fr; }
  .outcome-inner { flex-direction: column; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
}






/* Intersection image animation */
.about-int-img-anim {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-int-img-anim.int-img-visible {
  opacity: 1;
  transform: translateX(0);
  animation: floatImg 4s ease-in-out infinite;
}

@keyframes floatImg {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
