    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary: #0066FF;
      --primary-dark: #0052CC;
      --secondary: #00D4FF;
      --dark: #0A1628;
      --dark-blue: #1A2942;
      --text-dark: #1E293B;
      --text-light: #E8EDF5;
      --text-muted: #64748B;
      --accent-gold: #FFB800;
      --success: #00C853;
      --bg-white: #FFFFFF;
      --bg-light: #F8FAFC;
      --border-light: #E2E8F0;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg-white);
      color: var(--text-dark);
      overflow-x: hidden;
      line-height: 1.6;
    }

    /* Hero Section with Background Image */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: 
        linear-gradient(to right, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0.7) 100%),
        url('/stethoscope.webp') center center/cover no-repeat;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
      animation: pulse 8s ease-in-out infinite;
      mix-blend-mode: overlay;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.6; }
    }

/* ========================================
   PREMIUM NAVIGATION STYLES
   ======================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(30px) saturate(180%);
  background: linear-gradient(
    to bottom,
    rgba(10, 22, 40, 0.85) 0%,
    rgba(10, 22, 40, 0.7) 100%
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 24px rgba(0, 0, 0, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

.nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 102, 255, 0.3) 50%,
    transparent 100%
  );
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

.nav.scrolled {
  padding: 1rem 5%;
  background: rgba(10, 22, 40, 0.98);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.25),
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
  border-bottom: 1px solid rgba(0, 102, 255, 0.15);
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0066FF 0%, #00D4FF 50%, #0066FF 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: gradientFlow 3s ease infinite;
  position: relative;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.logo:hover::after {
  opacity: 1;
}

@keyframes gradientFlow {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  box-shadow: 
    0 4px 12px rgba(0, 102, 255, 0.3),
    0 0 0 2px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.logo:hover img {
  transform: rotate(5deg) scale(1.05);
  box-shadow: 
    0 6px 16px rgba(0, 102, 255, 0.5),
    0 0 0 2px rgba(0, 102, 255, 0.3);
}

.nav-links {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links a i {
  font-size: 0.9rem;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.nav-links a:hover i {
  opacity: 1;
  transform: translateX(-2px);
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.nav-links a:hover::before {
  width: 100%;
}

.nav-links a:hover {
  color: white;
  transform: translateY(-2px);
}

.cta-btn {
  padding: 0.875rem 2.25rem;
  background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
  border: none;
  border-radius: 50px;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 20px rgba(0, 102, 255, 0.4),
    0 1px 0 rgba(255, 255, 255, 0.2) inset;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 8px 30px rgba(0, 102, 255, 0.6),
    0 1px 0 rgba(255, 255, 255, 0.3) inset;
}

.cta-btn:active {
  transform: translateY(-1px);
}

.cta-btn i {
  font-size: 0.9rem;
}

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1400px;
      margin: 0 auto;
      padding: 8rem 5% 4rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .hero-text {
      animation: fadeInUp 1s ease;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1.25rem;
      background: rgba(0, 212, 255, 0.1);
      border: 1px solid rgba(0, 212, 255, 0.3);
      border-radius: 50px;
      color: var(--secondary);
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 2rem;
      animation: fadeInUp 1s ease 0.2s both;
    }

    h1 {
      font-family: 'Playfair Display', serif;
      font-size: 4.5rem;
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      color: white;
      animation: fadeInUp 1s ease 0.4s both;
    }

    .hero-text p {
      font-size: 1.25rem;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 2.5rem;
      line-height: 1.8;
      animation: fadeInUp 1s ease 0.6s both;
    }

    .hero-actions {
      display: flex;
      gap: 1.5rem;
      animation: fadeInUp 1s ease 0.8s both;
    }

    .btn-primary {
      padding: 1.25rem 3rem;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      border: none;
      border-radius: 50px;
      color: white;
      font-weight: 700;
      font-size: 1.1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
    }

    .btn-secondary {
      padding: 1.25rem 3rem;
      background: transparent;
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-radius: 50px;
      color: white;
      font-weight: 600;
      font-size: 1.1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
    }

    .btn-secondary:hover {
      border-color: var(--primary);
      background: rgba(0, 102, 255, 0.1);
      transform: translateY(-3px);
    }

    .hero-visual {
      position: relative;
      animation: fadeInRight 1s ease 0.4s both;
    }

    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .stat-card {
      padding: 2rem;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 20px;
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
    }

    .stat-card:hover {
      transform: translateY(-5px);
      border-color: var(--primary);
      box-shadow: 0 10px 40px rgba(0, 102, 255, 0.2);
      background: rgba(255, 255, 255, 0.15);
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: 800;
      color: white;
      margin-bottom: 0.5rem;
    }

    .stat-label {
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.95rem;
    }


    /* Features Section */
    .features {
      padding: 8rem 5%;
      background: var(--bg-white);
    }

    .section-header {
      max-width: 800px;
      margin: 0 auto 5rem;
      text-align: center;
    }

    .section-tag {
      display: inline-block;
      padding: 0.5rem 1.5rem;
      background: rgba(0, 102, 255, 0.1);
      border: 1px solid rgba(0, 102, 255, 0.3);
      border-radius: 50px;
      color: var(--primary);
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 1.5rem;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 1.5rem;
      line-height: 1.2;
      color: var(--text-dark);
    }

    .section-description {
      font-size: 1.2rem;
      color: var(--text-muted);
      line-height: 1.8;
    }

    .features-grid {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
    }

    .feature-card {
      padding: 3rem;
      background: var(--bg-white);
      border: 1px solid var(--border-light);
      border-radius: 24px;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

    .feature-card:hover::before {
      transform: scaleX(1);
    }

    .feature-card:hover {
      transform: translateY(-10px);
      border-color: rgba(0, 102, 255, 0.3);
      box-shadow: 0 20px 60px rgba(0, 102, 255, 0.1);
    }

    .feature-icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      margin-bottom: 2rem;
      color: white;
      box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
    }

    .feature-card h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      font-weight: 700;
      color: var(--text-dark);
    }

    .feature-card p {
      color: var(--text-muted);
      line-height: 1.8;
      font-size: 1.05rem;
    }

    /* CTA Section */
    .cta-section {
      padding: 8rem 5%;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
      animation: float 6s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-30px); }
    }

    .cta-content {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .cta-content h2 {
      font-family: 'Playfair Display', serif;
      font-size: 3.5rem;
      margin-bottom: 1.5rem;
      font-weight: 900;
      color: white;
    }

    .cta-content p {
      font-size: 1.3rem;
      margin-bottom: 3rem;
      color: rgba(255, 255, 255, 0.95);
    }

    .cta-btn-large {
      padding: 1.5rem 4rem;
      background: white;
      color: var(--primary);
      border: none;
      border-radius: 50px;
      font-weight: 800;
      font-size: 1.2rem;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }

    .cta-btn-large:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    }

    /* Footer */
    .footer {
      padding: 5rem 5% 3rem;
      background: var(--dark-blue);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-content {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 4rem;
      margin-bottom: 4rem;
    }

    .footer-brand {
      max-width: 400px;
    }

    .footer-logo {
      font-size: 1.8rem;
      font-weight: 800;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 1.5rem;
    }

    .footer-brand p {
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 2rem;
    }

    .social-links {
      display: flex;
      gap: 1rem;
    }

    .social-link {
      width: 45px;
      height: 45px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-light);
      transition: all 0.3s ease;
    }

    .social-link:hover {
      background: var(--primary);
      border-color: var(--primary);
      transform: translateY(-3px);
    }

    .footer-section h4 {
      margin-bottom: 1.5rem;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--text-light);
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .footer-links a {
      color: var(--text-muted);
      text-decoration: none;
      transition: all 0.3s ease;
      font-size: 0.95rem;
    }

    .footer-links a:hover {
      color: var(--primary);
      padding-left: 5px;
    }

    .footer-bottom {
      max-width: 1400px;
      margin: 0 auto;
      padding-top: 3rem;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: var(--text-muted);
      font-size: 0.9rem;
    }

    .mobile-menu {
      display: none;
      background: none;
      border: none;
      color: white;
      font-size: 1.5rem;
      cursor: pointer;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: 
      linear-gradient(
        to bottom,
        rgba(10, 22, 40, 0.98) 0%,
        rgba(26, 41, 66, 0.98) 100%
      );
    backdrop-filter: blur(40px) saturate(180%);
    flex-direction: column;
    padding: 6rem 2.5rem 3rem;
    gap: 0;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
      -10px 0 50px rgba(0, 0, 0, 0.5),
      inset 1px 0 0 rgba(255, 255, 255, 0.05);
    overflow-y: auto;
  }

  .nav-links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 102, 255, 0.5) 50%,
      transparent 100%
    );
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    width: 100%;
    padding: 1.25rem 1.5rem;
    margin: 0.5rem 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    justify-content: flex-start;
    font-size: 1rem;
  }

  .nav-links a::before {
    display: none;
  }

  .nav-links a:hover,
  .nav-links a:active {
    background: rgba(0, 102, 255, 0.1);
    border-color: rgba(0, 102, 255, 0.3);
    transform: translateX(5px);
  }

  .nav-links a i {
    font-size: 1.1rem;
    opacity: 0.8;
  }

  .nav-links .cta-btn {
    width: 100%;
    margin-top: 2rem;
    padding: 1.25rem 2rem;
    justify-content: center;
    font-size: 1.05rem;
  }

  .mobile-menu {
    display: block;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }

  .mobile-menu:hover {
    background: rgba(0, 102, 255, 0.2);
    border-color: rgba(0, 102, 255, 0.3);
  }

  .mobile-menu:active {
    transform: scale(0.95);
  }

      .hero-content {
        grid-template-columns: 1fr;
        padding: 6rem 5% 3rem;
        text-align: center;
      }

      h1 {
        font-size: 2.5rem;
      }

      .hero-text p {
        font-size: 1.1rem;
      }

      .hero-actions {
        flex-direction: column;
      }

      .stats-grid {
        grid-template-columns: 1fr;
      }

      .features-grid {
        grid-template-columns: 1fr;
      }

      .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
      }


      .cta-content h2 {
        font-size: 2rem;
      }

      .cta-content p {
        font-size: 1.1rem;
      }
    }

/* ========================================
   PREMIUM TRUST SECTION
   ======================================== */

.trust-section {
  padding: 7rem 5% 8rem;
  background: 
    linear-gradient(180deg, 
      rgba(248, 250, 252, 0) 0%,
      rgba(255, 255, 255, 1) 15%,
      rgba(255, 255, 255, 1) 85%,
      rgba(248, 250, 252, 0) 100%
    );
  position: relative;
  overflow: hidden;
}

/* Animated Background Elements */
.trust-section::before,
.trust-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: floatSlow 12s ease-in-out infinite;
  pointer-events: none;
}

.trust-section::before {
  top: -150px;
  left: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.2) 0%, transparent 70%);
}

.trust-section::after {
  bottom: -150px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
  animation-delay: -6s;
}

@keyframes floatSlow {
  0%, 100% { 
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  50% { 
    transform: translate(30px, -40px) scale(1.1);
    opacity: 0.5;
  }
}

.trust-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Trust Header */
.trust-header {
  text-align: center;
  margin-bottom: 5rem;
  animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.75rem;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 255, 0.1));
  border: 2px solid rgba(0, 102, 255, 0.2);
  border-radius: 50px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.15);
}

.trust-badge i {
  font-size: 1rem;
}

.trust-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.trust-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.team-card {
  position: relative;
  padding: 3rem 2rem;
  background: 
    linear-gradient(white, white) padding-box,
    linear-gradient(135deg, rgba(0, 102, 255, 0.3), rgba(0, 212, 255, 0.3)) border-box;
  border: 2px solid transparent;
  border-radius: 24px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  overflow: hidden;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.04);
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.team-card:hover::before {
  transform: scaleX(1);
}

.card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.6s ease;
  pointer-events: none;
}

.team-card:hover .card-glow {
  width: 300px;
  height: 300px;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 20px 60px rgba(0, 102, 255, 0.2),
    0 5px 15px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 102, 255, 0.4);
}

.team-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  box-shadow: 
    0 15px 35px rgba(0, 102, 255, 0.3),
    0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
}

.team-card:hover .team-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 
    0 20px 45px rgba(0, 102, 255, 0.4),
    0 8px 20px rgba(0, 0, 0, 0.15);
}

.team-content {
  position: relative;
  z-index: 2;
}

.team-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.team-role {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 500;
}

.team-badge {
  font-size: 2rem;
  margin-top: 1rem;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.team-card:hover .team-badge {
  transform: scale(1.2);
  opacity: 1;
}

/* Trust Stats */
.trust-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  padding: 3rem 4rem;
  background: 
    linear-gradient(white, white) padding-box,
    linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 212, 255, 0.2)) border-box;
  border: 2px solid transparent;
  border-radius: 24px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 1s ease 0.3s both;
}

.trust-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.trust-stats .stat-item i {
  font-size: 2.5rem;
  color: var(--primary);
  opacity: 0.8;
}

.trust-stats .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.trust-stats .stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
}

.trust-stats .stat-divider {
  width: 2px;
  height: 60px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(0, 102, 255, 0.3),
    transparent
  );
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .trust-title {
    font-size: 2.75rem;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }

  .trust-stats {
    gap: 3rem;
    padding: 2.5rem 3rem;
  }
}

@media (max-width: 768px) {
  .trust-section {
    padding: 5rem 5% 6rem;
  }

  .trust-header {
    margin-bottom: 3.5rem;
  }

  .trust-title {
    font-size: 2.25rem;
  }

  .trust-subtitle {
    font-size: 1.1rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 400px;
    margin: 0 auto 4rem;
  }

  .team-card {
    padding: 2.5rem 2rem;
  }

  .trust-stats {
    flex-direction: column;
    gap: 2.5rem;
    padding: 2.5rem 2rem;
  }

  .trust-stats .stat-item {
    width: 100%;
    justify-content: center;
  }

  .trust-stats .stat-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(
      to right,
      transparent,
      rgba(0, 102, 255, 0.3),
      transparent
    );
  }
}

@media (max-width: 480px) {
  .trust-title {
    font-size: 1.85rem;
  }

  .trust-subtitle {
    font-size: 1rem;
  }

  .team-icon {
    width: 75px;
    height: 75px;
    font-size: 2rem;
  }

  .team-name {
    font-size: 1.3rem;
  }

  .team-role {
    font-size: 0.95rem;
  }

  .trust-stats .stat-number {
    font-size: 2rem;
  }

  .trust-stats .stat-item i {
    font-size: 2rem;
  }
}