:root {
    --primary: #3a4ee5;
    --primary-dark: #2a3bc0;
    --primary-light: #eef0fd;
    --accent: #ff6b35;
    --dark: #0d0f1a;
    --gray: #6c757d;
    --light-bg: #f8f9ff;
  }

  /* ---- Hero About ---- */
  .about-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1a2bbf 60%, #0d1a8c 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
  }

  .about-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    pointer-events: none;
  }

  .about-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
  }

  .about-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
  }

  .about-hero h1 span {
    color: #ffce63;
  }

  .about-hero p {
    color: rgba(255,255,255,0.82);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 480px;
  }

  .hero-img-wrap {
    position: relative;
  }

  .hero-img-wrap img {
    border-radius: 20px;
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  }

  .hero-badge-float {
    position: absolute;
    bottom: -18px;
    left: -18px;
    background: #fff;
    border-radius: 16px;
    padding: 14px 20px;
    box-shadow: 0 12px 40px rgba(58,78,229,0.22);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 180px;
  }

  .hero-badge-float .icon-box {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
  }

  .hero-badge-float .label {
    font-size: 0.7rem;
    color: var(--gray);
    font-weight: 500;
  }

  .hero-badge-float .value {
    font-size: 1rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
  }

  /* ---- Stats ---- */
  .stats-section {
    padding: 60px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
  }

  .stat-item {
    text-align: center;
    padding: 20px 10px;
  }

  .stat-number {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
  }

  .stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
  }

  .stat-divider {
    width: 1px;
    background: #e0e0e0;
    align-self: stretch;
  }

  /* ---- Story ---- */
  .story-section {
    padding: 90px 0;
    background: var(--light-bg);
  }

  .section-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50px;
    padding: 5px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 14px;
  }

  .section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 16px;
  }

  .story-img {
    border-radius: 20px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(58,78,229,0.12);
  }

  .story-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    box-shadow: 0 4px 20px rgba(58,78,229,0.07);
    margin-bottom: 16px;
    border: 1px solid #eef0fd;
    transition: transform 0.25s, box-shadow 0.25s;
  }

  .story-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(58,78,229,0.14);
  }

  .story-card .icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
  }

  .story-card h6 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
    font-size: 0.95rem;
  }

  .story-card p {
    font-size: 0.83rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
  }

  /* ---- Values ---- */
  .values-section {
    padding: 90px 0;
    background: #fff;
  }

  .value-card {
    border-radius: 20px;
    padding: 36px 28px;
    height: 100%;
    border: 1.5px solid #eef0fd;
    transition: all 0.28s ease;
    position: relative;
    overflow: hidden;
  }

  .value-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.28s ease;
    transform-origin: left;
  }

  .value-card:hover::before {
    transform: scaleX(1);
  }

  .value-card:hover {
    box-shadow: 0 16px 48px rgba(58,78,229,0.12);
    border-color: transparent;
    transform: translateY(-4px);
  }

  .value-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 20px;
  }

  .value-card h5 {
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.05rem;
  }

  .value-card p {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 0;
  }

  /* ---- Team ---- */
  .team-section {
    padding: 90px 0;
    background: var(--light-bg);
  }

  .team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(58,78,229,0.08);
    transition: all 0.28s ease;
    border: 1px solid #eef0fd;
  }

  .team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(58,78,229,0.16);
  }

  .team-img-wrap {
    position: relative;
    overflow: hidden;
  }

  .team-img-wrap img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .team-card:hover .team-img-wrap img {
    transform: scale(1.06);
  }

  .team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(58,78,229,0.75) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
  }

  .team-card:hover .team-overlay {
    opacity: 1;
  }

  .team-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    color: var(--primary);
    font-size: 0.95rem;
    margin: 0 4px;
    text-decoration: none;
    transition: background 0.2s;
  }

  .team-socials a:hover {
    background: #fff;
  }

  .team-info {
    padding: 20px 22px;
  }

  .team-info h6 {
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 3px;
    font-size: 1rem;
  }

  .team-info .role {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
  }

  /* ---- CTA ---- */
  .cta-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1a2bbf 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    top: -200px; right: -100px;
    pointer-events: none;
  }

  .cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
  }

  .cta-section p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .btn-cta-primary {
    background: #fff;
    color: var(--primary);
    font-weight: 700;
    border: none;
    border-radius: 50px;
    padding: 14px 36px;
    font-size: 0.95rem;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
  }

  .btn-cta-primary:hover {
    background: #ffce63;
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
  }

  .btn-cta-outline {
    background: transparent;
    color: #fff;
    font-weight: 700;
    border: 2px solid rgba(255,255,255,0.55);
    border-radius: 50px;
    padding: 13px 32px;
    font-size: 0.95rem;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
  }

  .btn-cta-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    color: #fff;
  }

  /* Responsive tweaks */
  @media (max-width: 768px) {
    .about-hero { padding: 60px 0 50px; }
    .hero-img-wrap { margin-top: 40px; }
    .hero-badge-float { bottom: -14px; left: 10px; }
    .stat-divider { display: none; }
    .story-img { margin-bottom: 30px; }
  }