.about-hero-section {
      background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
    }
    
    .about-hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      overflow: hidden;
      pointer-events: none;
    }
    
    .about-hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }
    
    .about-hero-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
      margin: 0 auto 1.5rem;
      animation: icon-float 4s ease-in-out infinite;
    }
    
    @keyframes icon-float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }
    
    .about-hero-icon svg {
      width: 40px;
      height: 40px;
      color: white;
    }
    
    .about-hero-title {
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 700;
      color: white;
      margin-bottom: 1rem;
    }
    
    .about-hero-subtitle {
      font-size: 1.125rem;
      color: var(--primary-100);
      max-width: 600px;
      margin: 0 auto;
    }
    
    .about-intro {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    
    @media (max-width: 768px) {
      .about-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
      
      .about-hero-icon {
        width: 60px;
        height: 60px;
      }
      
      .about-hero-icon svg {
        width: 30px;
        height: 30px;
      }
    }
    
    .about-intro-content h2 {
      font-size: 2rem;
      font-weight: 700;
      color: var(--primary-700);
      margin-bottom: 1.5rem;
      position: relative;
      display: inline-block;
    }
    
    .about-intro-content h2::after {
      content: '';
      position: absolute;
      bottom: -8px;
      right: 0;
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, var(--primary-500), var(--primary-300));
      border-radius: 2px;
    }
    
    .about-intro-content p {
      color: var(--secondary-600);
      line-height: 1.8;
      margin-bottom: 1.25rem;
      font-size: 1rem;
    }
    
    .about-intro-visual {
      position: relative;
      border-radius: 1.5rem;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }
    
    .about-intro-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }
    
    .about-intro-visual:hover .about-intro-image {
      transform: scale(1.02);
    }
    
    .solution-feature {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1rem;
      background: var(--white);
      border-radius: var(--radius-md);
      font-size: 0.875rem;
      color: var(--secondary-700);
      border: 1px solid var(--secondary-200);
      transition: var(--transition);
    }
    
    .solution-feature:hover {
      border-color: var(--primary-300);
      transform: translateX(-4px);
    }
    
    .features-grid {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 2rem;
    }
    
    @media (min-width: 768px) {
      .features-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    .solution-feature svg {
      width: 1rem;
      height: 1rem;
      color: var(--accent-500);
      flex-shrink: 0;
    }
    
    /* RTL Styles */
    /* Base RTL Styles */
    html[dir="rtl"] {
      direction: rtl;
      text-align: right;
    }
    
    /* Header */
    html[dir="rtl"] .header-inner { flex-direction: row; }
    html[dir="rtl"] .nav-menu { flex-direction: row; }
    html[dir="rtl"] .header-actions { flex-direction: row; }
    html[dir="rtl"] .header-email { margin-left: 1rem; margin-right: 0; }
    
    /* About Section */
    html[dir="rtl"] .about-intro { grid-template-columns: 1fr 1fr; }
    html[dir="rtl"] .about-intro-content h2::after { left: auto; right: 0; }
    
    /* Features */
    html[dir="rtl"] .feature-card { text-align: right; }
    html[dir="rtl"] .solution-feature { flex-direction: row-reverse; }
    html[dir="rtl"] .solution-feature:hover { transform: translateX(4px); }
    
    /* Footer */
    html[dir="rtl"] .footer-grid { flex-direction: row-reverse; }
    html[dir="rtl"] .footer-links { text-align: right; }
    html[dir="rtl"] .footer-contact-item { flex-direction: row-reverse; }
    html[dir="rtl"] .footer-contact-item svg { margin-left: 0.75rem; margin-right: 0; }
    html[dir="rtl"] .footer-bottom { flex-direction: row-reverse; }
    
    /* Buttons */
    html[dir="rtl"] .btn-primary:hover { transform: translateY(-2px); }
    
    /* Responsive */
    @media (max-width: 768px) {
      html[dir="rtl"] .about-intro { grid-template-columns: 1fr; }
      html[dir="rtl"] .header-inner {
        flex-direction: row !important;
        width: 100%;
        min-width: 0;
      }
      html[dir="rtl"] .header-actions {
        flex-direction: row !important;
        min-width: 0;
      }
      html[dir="rtl"] .header-actions .btn-primary {
        max-width: 100%;
      }
      html[dir="rtl"] .header-email {
        max-width: 100%;
        overflow-wrap: anywhere;
      }
      html,
      body {
        overflow-x: hidden;
      }
      html[dir="rtl"] .footer-grid { flex-direction: column; }
      html[dir="rtl"] .footer-bottom { flex-direction: column; }
    }

.product-card {
            background: var(--white);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-md);
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid var(--secondary-200);
            position: relative;
          }
          
          .product-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary-400);
          }
          
          .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-500), var(--primary-600));
            opacity: 0;
            transition: opacity 0.3s ease;
          }
          
          .product-card:hover::before {
            opacity: 1;
          }
          
          .product-card:nth-child(2)::before {
            background: linear-gradient(90deg, #2563eb, #2563eb);
          }
          
          .product-card:nth-child(3)::before {
            background: linear-gradient(90deg, #3b82f6, #2563eb);
          }
          
          .product-card:nth-child(4)::before {
            background: linear-gradient(90deg, #60a5fa, #2563eb);
          }
          
          .product-card:nth-child(5)::before {
            background: linear-gradient(90deg, #3b82f6, #2563eb);
          }
          
          .product-card:nth-child(6)::before {
            background: linear-gradient(90deg, #60a5fa, #2563eb);
          }
          
          .product-card:nth-child(2):hover {
            border-color: #2563eb;
          }
          
          .product-card:nth-child(3):hover {
            border-color: #3b82f6;
          }
          
          .product-card:nth-child(4):hover {
            border-color: #60a5fa;
          }
          
          .product-card:nth-child(5):hover {
            border-color: #3b82f6;
          }
          
          .product-card:nth-child(6):hover {
            border-color: #60a5fa;
          }
          
          .product-image {
            width: 100%;
            height: 220px;
            object-fit: contain;
            padding: 1.5rem;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
          }
          
          .product-card:hover .product-image {
            transform: scale(1.05);
          }
          
          .product-content {
            padding: 1.5rem;
            text-align: center;
          }
          
          .product-title {
            font-weight: 700;
            font-size: 1.125rem;
            color: var(--secondary-900);
            margin-bottom: 0.75rem;
            transition: color 0.3s ease;
          }
          
          .product-card:hover .product-title {
            color: var(--primary-600);
          }
          
          .product-card:nth-child(2):hover .product-title {
            color: #2563eb;
          }
          
          .product-card:nth-child(3):hover .product-title {
            color: #3b82f6;
          }
          
          .product-card:nth-child(4):hover .product-title {
            color: #60a5fa;
          }
          
          .product-card:nth-child(5):hover .product-title {
            color: #3b82f6;
          }
          
          .product-card:nth-child(6):hover .product-title {
            color: #60a5fa;
          }
          
          .product-badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            background: var(--primary-100);
            color: var(--primary-600);
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
          }
          
          .product-card:nth-child(2) .product-badge {
            background: #dbeafe;
            color: #2563eb;
          }
          
          .product-card:nth-child(3) .product-badge {
            background: #eff6ff;
            color: #2563eb;
          }
          
          .product-card:nth-child(4) .product-badge {
            background: #dbeafe;
            color: #2563eb;
          }
          
          .product-card:nth-child(5) .product-badge {
            background: #dbeafe;
            color: #2563eb;
          }
          
          .product-card:nth-child(6) .product-badge {
            background: #eff6ff;
            color: #2563eb;
          }