:root {
  --about-primary: #3b82f6;
  --about-secondary: #2563eb;
  --about-accent: #8b5cf6;
  --about-bg-base: #0a0f18;
  --about-bg-card: rgba(15, 20, 30, 0.6);
  --about-border: rgba(255, 255, 255, 0.08);
  --about-text-main: #f8fafc;
  --about-text-muted: #94a3b8;
  --about-glow: rgba(59, 130, 246, 0.5);
  --about-gradient-hero: linear-gradient(
    135deg,
    #60a5fa 0%,
    #3b82f6 50%,
    #8b5cf6 100%
  );
  --about-gradient-glass: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.01)
  );
}
body {
  background-color: var(--about-bg-base);
  color: var(--about-text-main);
  overflow-x: hidden;
}
.text-gradient {
  background: var(--about-gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.eyebrow-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  margin-bottom: 1.5rem;
}
.premium-glass {
  background: var(--about-bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--about-border);
  border-radius: 24px;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}
.premium-glass::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.03),
    transparent
  );
  transform: skewX(-20deg);
  transition: 0.7s;
}
.premium-glass:hover::before {
  left: 200%;
}
.premium-glass:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(59, 130, 246, 0.1);
  transform: translateY(-5px);
}
.about-hero-premium {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12rem 5% 6rem;
  margin-top: -120px;
  overflow: hidden;
  background: var(--about-bg-base);
}
.hero-mesh-bg {
  position: absolute;
  inset: -60px;
  z-index: 1;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(59, 130, 246, 0.15) 0,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(139, 92, 246, 0.1) 0,
      transparent 40%
    ),
    radial-gradient(circle at 50% 50%, rgba(15, 20, 30, 0.8) 0, transparent 70%);
  filter: blur(40px);
}
.hero-aurora-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: 20s ease-in-out infinite alternate orb-float;
}
.orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(59, 130, 246, 0.4);
  top: -100px;
  left: -100px;
}
.orb-2 {
  width: 500px;
  height: 500px;
  background: rgba(139, 92, 246, 0.3);
  bottom: -150px;
  right: -100px;
  animation-delay: -5s;
}
.orb-3 {
  width: 300px;
  height: 300px;
  background: rgba(6, 182, 212, 0.3);
  top: 40%;
  left: 60%;
  animation-delay: -10s;
}
@keyframes orb-float {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(50px, 30px) scale(1.1);
  }
  100% {
    transform: translate(-30px, 80px) scale(0.9);
  }
}
.hero-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
  z-index: 2;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.25rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 100px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}
.badge-pulse {
  width: 8px;
  height: 8px;
  background: #3b82f6;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
  animation: 2s infinite pulse-badge;
}
@keyframes pulse-badge {
  0% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  }
}
.badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: #60a5fa;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero-title-pro {
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}
.hero-subtitle-pro {
  font-size: 1.25rem;
  color: var(--about-text-muted);
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 90%;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-actions.justify-center {
  justify-content: center;
}
.btn-premium {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.btn-primary {
  background: var(--about-gradient-hero);
  color: #fff;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}
.btn-primary:hover {
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
  transform: translateY(-3px);
}
.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  border-color: rgba(59, 130, 246, 0.5);
  background: rgba(59, 130, 246, 0.05);
  transform: translateY(-3px);
}
.hero-trust-indicators {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.avatars {
  display: flex;
  align-items: center;
}
.avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--about-bg-base);
  margin-left: -12px;
}
.avatars img:first-child {
  margin-left: 0;
}
.avatar-more {
  min-width: 44px;
  height: 40px;
  padding: 0 10px;
  border-radius: 20px;
  background: #1e293b;
  border: 2px solid var(--about-bg-base);
  margin-left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  z-index: 1;
}
.trust-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.trust-text .stars {
  color: #fbbf24;
  font-size: 0.9rem;
  letter-spacing: 2px;
}
.trust-text span {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 500;
}
.hero-visual-wrapper {
  position: relative;
  z-index: 2;
}
.visual-saas-mockup {
  position: relative;
  width: 100%;
  z-index: 2;
  perspective: 1000px;
}
.mockup-window {
  width: 100%;
  background: rgba(15, 20, 30, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s;
  animation: 6s ease-in-out infinite float-clean;
}
.visual-saas-mockup:hover .mockup-window {
  transform: rotateY(0) rotateX(0);
}
@keyframes float-clean {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.mockup-header {
  height: 40px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  padding: 0 1rem;
}
.mockup-header .dots {
  display: flex;
  gap: 6px;
}
.mockup-header .dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #334155;
}
.mockup-header .dots span:first-child {
  background: #ef4444;
}
.mockup-header .dots span:nth-child(2) {
  background: #eab308;
}
.mockup-header .dots span:nth-child(3) {
  background: #22c55e;
}
.mockup-body {
  display: flex;
  flex: 1;
  overflow: hidden;
}
.mockup-sidebar {
  width: 60px;
  background: rgba(255, 255, 255, 0.02);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.sidebar-item {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
}
.sidebar-item.active {
  background: #3b82f6;
}
.mockup-content {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.mockup-banner {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.1),
    rgba(139, 92, 246, 0.1)
  );
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.banner-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--about-gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
}
.banner-text h4 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
}
.progress-bar-mini {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: #3b82f6;
  border-radius: 10px;
}
.mockup-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mockup-list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.02);
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
  color: #cbd5e1;
}
.mockup-list-item i {
  color: #60a5fa;
  font-size: 1.1rem;
}
.floating-glass-card {
  position: absolute;
  background: rgba(15, 20, 30, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: 6s ease-in-out infinite float-element;
  z-index: 5;
}
.floating-glass-card .icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  font-size: 1.2rem;
}
.fc-1 {
  top: -20px;
  right: -20px;
  animation-delay: 0s;
}
.fc-2 {
  bottom: 40px;
  right: -40px;
  animation-delay: 1s;
}
.fc-2 .icon-wrap {
  color: #8b5cf6;
  background: rgba(139, 92, 246, 0.15);
}
.fc-3 {
  bottom: -20px;
  left: -20px;
  animation-delay: 2s;
}
.fc-3 .icon-wrap {
  color: #06b6d4;
  background: rgba(6, 182, 212, 0.15);
}
@keyframes float-element {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
.stats-section {
  padding: 0 5%;
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: -5rem auto 6rem;
}
.stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  padding: 2rem;
  background: rgba(15, 20, 30, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 32px;
  box-shadow:
    0 30px 60px -15px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
  padding: 3rem 2rem;
  background: rgba(20, 25, 35, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  transition:
    transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.4s,
    border-color 0.4s;
}
.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(59, 130, 246, 0.2);
}
.stat-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(14, 116, 144, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #06b6d4;
  border: none;
  box-shadow: none;
  transition: 0.4s;
}
.stat-item:hover .stat-icon {
  background: rgba(14, 116, 144, 0.3);
  color: #22d3ee;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}
.stat-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-num-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.stat-num {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  background: var(--about-gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
  display: inline-block;
}
.stat-suffix {
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--about-gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 2px;
}
.stat-label {
  color: var(--about-text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}
.stat-divider {
  display: none;
}
.story-section {
  padding: 6rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.story-content-wrapper {
  display: flex;
  flex-direction: column;
}
.story-heading {
  font-size: 2.8rem;
  line-height: 1.3;
  margin: 1.5rem 0 2rem;
  color: var(--about-text-main);
  background: var(--about-gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.story-text-card {
  padding: 0;
  text-align: left;
  position: relative;
}
[dir="rtl"] .story-grid,
[dir="rtl"] .story-heading,
[dir="rtl"] .story-text-card {
  text-align: right;
}
.story-text-card p {
  font-size: 1.2rem;
  color: var(--about-text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}
.story-text-card p strong {
  color: var(--about-text-main);
  background: var(--about-gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}
.story-visual {
  position: relative;
  border-radius: 24px;
  z-index: 1;
}
.story-visual::before {
  content: "";
  position: absolute;
  top: -20px;
  bottom: 20px;
  left: 20px;
  right: -20px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: -1;
  transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.story-visual:hover::before {
  top: -15px;
  right: -15px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
}
[dir="rtl"] .story-visual::before {
  right: 20px;
  left: -20px;
}
[dir="rtl"] .story-visual:hover::before {
  left: -15px;
}
.story-image-container {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.story-image-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 60%);
  pointer-events: none;
}
.story-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.story-visual:hover .story-image-container img {
  transform: scale(1.05);
}
.visual-badge {
  position: absolute;
  bottom: -30px;
  left: -30px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.5), 
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: float-element 6s ease-in-out infinite;
}
[dir="rtl"] .visual-badge {
  left: auto;
  right: -30px;
}
.visual-badge-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(59, 130, 246, 0.3);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}
.visual-badge-icon i {
  font-size: 1.5rem;
  color: #60a5fa;
}
.visual-badge h4 {
  font-size: 1.2rem;
  margin: 0 0 0.2rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.visual-badge p {
  margin: 0;
  font-size: 0.95rem;
  color: #94a3b8;
}
@media (max-width: 992px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .story-heading {
    font-size: 2.2rem;
  }
  .story-visual {
    margin-top: 2rem;
  }
}
.section-header {
  text-align: center;
  margin-bottom: 5rem;
}
.section-header h2 {
  font-size: 2.8rem;
}
.section-subtitle {
  color: var(--about-text-muted);
  margin-top: 1rem;
  font-size: 1.1rem;
  max-width: 600px;
  margin-inline: auto;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  perspective: 1000px;
}
.pillar-card {
  position: relative;
  padding: 3rem 2.5rem;
  text-align: center;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(30, 41, 59, 0.3) 0,
    rgba(15, 23, 42, 0.5) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 10px 30px rgba(0, 0, 0, 0.2);
  transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pillar-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 0,
    rgba(59, 130, 246, 0.1) 0,
    transparent 60%
  );
  opacity: 1;
  transition: background 0.4s;
  z-index: -1;
  pointer-events: none;
}
.pillar-card:hover .pillar-glow {
  background: radial-gradient(
    circle at 50% 0,
    rgba(59, 130, 246, 0.2) 0,
    transparent 70%
  );
}
.pillar-border {
  display: none;
}
.pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(59, 130, 246, 0.1);
}
.pillar-icon-wrapper {
  position: relative;
  width: 64px;
  height: 64px;
  margin: 0 auto 2rem;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #94a3b8;
  transition: 0.4s;
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.05),
    0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.icon-ring {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), transparent);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.pillar-card:hover .pillar-icon-wrapper {
  color: #60a5fa;
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(30, 58, 138, 0.3);
  transform: scale(1.05);
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.1),
    0 12px 24px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(59, 130, 246, 0.2);
}
.pillar-card:hover .icon-ring {
  background: linear-gradient(180deg, rgba(96, 165, 250, 0.6), transparent);
}
.pillar-badge {
  display: none;
}
.pillar-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #e2e8f0;
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
.pillar-card:hover .pillar-content h3 {
  color: #fff;
}
.pillar-content p {
  color: #94a3b8;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
  transition: color 0.3s;
}
.pillar-card:hover .pillar-content p {
  color: #cbd5e1;
}
.bento-section {
  padding: 5rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 2rem;
  margin-top: 3rem;
}
.bento-box {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bento-box i {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.bento-box h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.bento-box p {
  color: var(--about-text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}
.bento-wide {
  grid-column: span 2;
}
.bento-tall {
  grid-row: span 2;
}
.box-1 {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.1) 0,
    rgba(15, 20, 30, 0.6) 100%
  );
}
.box-1 i {
  color: #3b82f6;
}
.box-2 {
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.1) 0,
    rgba(15, 20, 30, 0.6) 100%
  );
}
.box-2 i {
  color: #8b5cf6;
}
.box-3 {
  background: linear-gradient(
    135deg,
    rgba(96, 165, 250, 0.1) 0,
    rgba(15, 20, 30, 0.6) 100%
  );
}
.box-3 i {
  color: #60a5fa;
}
.box-4 {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0,
    rgba(15, 20, 30, 0.6) 100%
  );
}
.box-4 i {
  color: #f8fafc;
}
.founder-section {
  padding: 5rem 5%;
  max-width: 900px;
  margin: 0 auto;
}
.founder-card {
  padding: 5rem;
  background:
    radial-gradient(
      ellipse at top right,
      rgba(59, 130, 246, 0.1),
      transparent 60%
    ),
    radial-gradient(
      ellipse at bottom left,
      rgba(139, 92, 246, 0.1),
      transparent 60%
    );
  text-align: center;
}
.quote-icon {
  font-size: 3rem;
  color: #3b82f6;
  opacity: 0.5;
  margin-bottom: 2rem;
}
.founder-quote {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: var(--about-text-main);
}
.founder-info h4 {
  font-size: 1.3rem;
  color: #60a5fa;
  margin-bottom: 0.3rem;
}
.partners-section {
  padding: 4rem 0;
  text-align: center;
  overflow: hidden;
  background-color: var(--about-bg-base);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  margin-bottom: 3rem;
}
.partners-title {
  color: #e2e8f0;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 3.5rem;
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
}
.partners-logo-track {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
}
.partners-logo-track::after,
.partners-logo-track::before {
  content: "";
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.partners-logo-track::before {
  left: 0;
  background: linear-gradient(
    to right,
    var(--about-bg-base) 0,
    transparent 100%
  );
}
.partners-logo-track::after {
  right: 0;
  background: linear-gradient(
    to left,
    var(--about-bg-base) 0,
    transparent 100%
  );
}
.partners-logos {
  display: flex;
  align-items: center;
  gap: 6rem;
  animation: 35s linear infinite scroll-partners;
  padding: 0 3rem;
  width: max-content;
}
.partners-logos i {
  font-size: 3rem;
  color: #64748b;
  opacity: 0.7;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}
.partners-logos i:hover {
  opacity: 1;
  color: #f8fafc;
  transform: scale(1.1);
}
@keyframes scroll-partners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.timeline-container {
  margin-top: 6rem;
  position: relative;
  max-width: 1000px;
  margin-inline: auto;
}
.timeline-container::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(59, 130, 246, 0.5), transparent);
}
.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--about-bg-base);
  border: 2px solid #3b82f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  font-size: 1.2rem;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  z-index: 2;
  transition: 0.4s;
}
.timeline-item:hover .timeline-dot {
  background: #3b82f6;
  color: #fff;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
  transform: translate(-50%, -50%) scale(1.1);
}
.timeline-content {
  width: 45%;
  padding: 2.5rem;
  position: relative;
  z-index: 1;
}
.timeline-date {
  display: inline-block;
  padding: 0.35rem 1.25rem;
  background: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.timeline-content h4 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.timeline-content p {
  color: var(--about-text-muted);
  line-height: 1.7;
  margin-bottom: 0;
  font-size: 1.05rem;
}
.team-section {
  padding: 5rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}
.team-card {
  padding: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-image {
  position: relative;
  width: 140px;
  height: 140px;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  padding: 5px;
  background: var(--about-gradient-hero);
}
.team-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--about-bg-base);
}
.team-social {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  background: var(--about-bg-card);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  border: 1px solid var(--about-border);
  opacity: 0;
  transition: 0.3s;
}
.team-card:hover .team-social {
  opacity: 1;
  bottom: -20px;
}
.team-social a {
  color: var(--about-text-main);
  transition: color 0.3s;
}
.team-social a:hover {
  color: #60a5fa;
}
.team-info h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.team-role {
  color: #8b5cf6;
  font-size: 0.95rem;
  font-weight: 600;
}
.founder-info span {
  color: var(--about-text-muted);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.cta-premium {
  margin: 5rem 5%;
  padding: 6rem 2rem;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1)),
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h40v40H0z' fill='none'/%3E%3Ccircle cx='20' cy='20' r='1' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.cta-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    transparent 0,
    var(--about-bg-base) 100%
  );
  z-index: 0;
}
.cta-content {
  position: relative;
  z-index: 1;
}
.cta-premium h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.cta-premium p {
  font-size: 1.25rem;
  color: var(--about-text-muted);
  margin-bottom: 3rem;
}
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-content p {
    margin: 0 auto 2.5rem;
  }
  .hero-actions {
    justify-content: center;
  }
  .feature-list {
    display: inline-block;
    text-align: left;
  }
  .main-visual-card {
    margin: 0 auto;
    max-width: 500px;
  }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-wide {
    grid-column: span 2;
  }
  .stats-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem;
  }
}
@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-tall,
  .bento-wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .founder-card,
  .story-text-card {
    padding: 3rem 2rem;
  }
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .timeline-container {
    padding-left: 0;
    margin-top: 4rem;
  }
  .timeline-container::before {
    left: 40px;
    transform: none;
  }
  .timeline-item, .timeline-item:nth-child(even) {
    flex-direction: column !important;
    align-items: flex-end;
    width: 100%;
    margin-bottom: 3rem;
  }
  .timeline-dot {
    left: 40px;
    top: 50px;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .timeline-item:hover .timeline-dot {
    transform: translate(-50%, -50%) scale(1.1);
  }
  .timeline-content {
    width: calc(100% - 90px);
    padding: 1.5rem;
  }
  [dir="rtl"] .timeline-container::before {
    left: auto;
    right: 40px;
  }
  [dir="rtl"] .timeline-item, [dir="rtl"] .timeline-item:nth-child(even) {
    align-items: flex-start;
  }
  [dir="rtl"] .timeline-dot {
    left: auto;
    right: 40px;
    transform: translate(50%, -50%);
  }
  [dir="rtl"] .timeline-item:hover .timeline-dot {
    transform: translate(50%, -50%) scale(1.1);
  }
  .partners-logos i {
    font-size: 2.5rem;
  }
}
.testimonials-section {
  padding: 5rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.stars {
  color: #f59e0b;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
.testimonial-text {
  font-size: 1.1rem;
  color: var(--about-text-main);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--about-border);
  padding-top: 1.5rem;
}
.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--about-primary);
}
.testimonial-author h5 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}
.testimonial-author span {
  color: var(--about-text-muted);
  font-size: 0.9rem;
}

/* Founder Section Pro Styles */
.founder-section {
  padding: 5rem 5%;
  max-width: 900px;
  margin: 0 auto;
}
.founder-card.premium-glass {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
  padding: 4rem;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}
.founder-orb {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}
.orb-top {
  top: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
}
.orb-bottom {
  bottom: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
}
.founder-image-wrapper {
  flex-shrink: 0;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.founder-image-glow {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--about-primary, #3b82f6), var(--about-accent, #8b5cf6));
  opacity: 0.5;
  filter: blur(10px);
}
.founder-img-pro {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.founder-text-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: left;
  position: relative;
  z-index: 1;
}
[dir="rtl"] .founder-text-wrapper {
  text-align: right;
}
.quote-icon-pro {
  font-size: 2rem;
  color: var(--about-primary, #3b82f6);
  opacity: 0.5;
  margin-bottom: 1rem;
  display: block;
}
.founder-quote-pro {
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.7;
  color: var(--about-text-main, #f8fafc);
}
.founder-info-pro {
  border-left: 3px solid var(--about-primary, #3b82f6);
  padding-left: 1.25rem;
}
[dir="rtl"] .founder-info-pro {
  border-left: none;
  border-right: 3px solid var(--about-primary, #3b82f6);
  padding-left: 0;
  padding-right: 1.25rem;
}
.founder-info-pro h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--about-text-main, #f8fafc);
}
.founder-info-pro span {
  color: var(--about-text-muted, #94a3b8);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Mission & Vision Pro Styles */
.mission-vision-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
.mission-box, .vision-box {
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
  transition: transform 0.4s, box-shadow 0.4s;
}
.mission-box:hover, .vision-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}
.mv-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}
.mission-icon {
  background: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}
.vision-icon {
  background: rgba(139, 92, 246, 0.1);
  color: #a78bfa;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}
.mv-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #fff;
}

/* Core Values Pro Styles */
.values-grid {
  grid-template-columns: repeat(4, 1fr);
}
.value-box {
  text-align: center;
  align-items: center;
  padding: 2.5rem 1.5rem;
}
.value-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}
.value-box:hover .value-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}
.vi-1 { background: rgba(59, 130, 246, 0.1); color: #60a5fa; }
.vi-2 { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.vi-3 { background: rgba(96, 165, 250, 0.1); color: #60a5fa; }
.vi-4 { background: rgba(248, 250, 252, 0.1); color: #f8fafc; }
.value-title {
  font-size: 1.25rem;
  color: #fff;
}

/* CTA Icon Wrapper */
.cta-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.2);
  margin-bottom: 1.5rem;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}
.cta-icon {
  font-size: 2.5rem;
  color: #60a5fa;
  transform: rotate(-45deg);
  margin-top: 5px;
  margin-right: 5px;
}

/* Certifications Section */
.cert-badge {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.4), rgba(15, 23, 42, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}
.cert-badge:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(59, 130, 246, 0.1);
}
