
          /* Hide Scroll to Top Button */
          .scrollup,
        #scrollUp,
        .scroll-to-top,
        .back-to-top,
        .scrollup-btn,
        .scroll-top {
          display: none !important;
          visibility: hidden !important;
          opacity: 0 !important;
        }
        
    #wp-business-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 1000;
    transition: transform .2s;
  }
  #wp-business-icon:hover {
    transform: scale(1.1);
  }

  #wp-business-icon i {
    color: #fff;
    font-size: 30px;
  }

    /* Yeni Entegrasyonlar Tasarımı */
    .integrations-hero {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }

    .integrations-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
      opacity: 0.3;
    }

    .hero-content {
      text-align: center;
      color: white;
      position: relative;
      z-index: 2;
    }

    .hero-title {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 20px;
      text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    }

    .hero-subtitle {
      font-size: 1.3rem;
      margin-bottom: 30px;
      opacity: 0.9;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 40px;
      margin-top: 40px;
    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: 700;
      display: block;
    }

    .stat-label {
      font-size: 0.9rem;
      opacity: 0.8;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* Kategori Bölümleri */
    .integration-categories {
      padding: 80px 0;
      background: #f8fafc;
    }

    .category-section {
      margin-bottom: 80px;
    }

    .category-title {
      font-size: 2.2rem;
      font-weight: 700;
      color: #1e293b;
      text-align: center;
      margin-bottom: 50px;
      position: relative;
    }

    .category-title::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background: linear-gradient(135deg, #667eea, #764ba2);
      border-radius: 2px;
    }

    .category-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .integration-card {
      background: white;
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      border: 1px solid #e2e8f0;
      position: relative;
      overflow: hidden;
    }

    .integration-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(135deg, #667eea, #764ba2);
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }

    .integration-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    .integration-card:hover::before {
      transform: scaleX(1);
    }

    .card-header {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }

    .card-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #667eea, #764ba2);
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 20px;
      color: white;
      font-size: 24px;
    }

    .card-title {
      font-size: 1.3rem;
      font-weight: 600;
      color: #1e293b;
      margin: 0;
    }

    .card-description {
      color: #64748b;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .card-features {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .card-features li {
      padding: 8px 0;
      color: #475569;
      position: relative;
      padding-left: 25px;
    }

    .card-features li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #10b981;
      font-weight: bold;
    }

    /* Logo Showcase */
    .logo-showcase {
      background: white;
      padding: 80px 0;
    }

    .showcase-title {
      text-align: center;
      font-size: 2.2rem;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 60px;
    }

    .logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 40px;
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .logo-item {
      text-align: center;
      padding: 20px;
      transition: all 0.3s ease;
    }

    .logo-item:hover {
      transform: scale(1.05);
    }

    .logo-item img {
      width: 80px;
      height: 80px;
      object-fit: contain;
      filter: grayscale(100%);
      transition: all 0.3s ease;
    }

    .logo-item:hover img {
      filter: grayscale(0%);
    }

    .logo-name {
      margin-top: 15px;
      font-size: 0.9rem;
      color: #64748b;
      font-weight: 500;
    }

    /* CTA Bölümü */
    .integration-cta {
      background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
      padding: 80px 0;
      text-align: center;
      color: white;
    }

    .cta-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .cta-description {
      font-size: 1.1rem;
      margin-bottom: 40px;
      opacity: 0.9;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .cta-btn {
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      display: inline-block;
    }

    .cta-btn-primary {
      background: linear-gradient(135deg, #667eea, #764ba2);
      color: white;
    }

    .cta-btn-secondary {
      background: transparent;
      color: white;
      border: 2px solid white;
    }

    .cta-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero-title { font-size: 2.5rem; }
      .hero-stats { flex-direction: column; gap: 20px; }
      .category-grid { grid-template-columns: 1fr; }
      .logo-grid { grid-template-columns: repeat(3, 1fr); }
      .cta-buttons { flex-direction: column; align-items: center; }
    }

    /* Yazılım Ortakları Stilleri */
    .software-partners {
      position: relative;
      width: 100%;
      padding: 80px 0;
      background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    }

    /* Başlık Bölümü */
    .partners-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .header-content {
      max-width: 800px;
      margin: 0 auto;
    }

    .partners-title {
      font-size: 3rem;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 20px;
      background: linear-gradient(135deg, #4E0AD9, #7C3AED);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .partners-subtitle {
      font-size: 1.25rem;
      color: #64748b;
      margin-bottom: 30px;
      line-height: 1.6;
    }

    .header-divider {
      width: 80px;
      height: 4px;
      background: linear-gradient(135deg, #4E0AD9, #7C3AED);
      margin: 0 auto;
      border-radius: 2px;
    }

    /* Ortaklar Grid */
    .partners-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 32px;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .partner-item {
      display: flex;
      justify-content: center;
      padding-bottom: 28px;
    }

    .partner-card {
      position: relative;
      width: 100px;
      height: 100px;
      background: transparent;
      border-radius: 16px;
      padding: 0;
      box-shadow: none;
      border: none;
      transition: all 0.3s ease;
      overflow: visible;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .partner-card::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(226, 232, 240, 0.9);
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
      opacity: 0;
      transition: opacity 0.25s ease;
    }

    .partner-card::after {
      content: "";
      position: absolute;
      width: 140px;
      height: 140px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(78, 10, 217, 0.16) 0%, rgba(124, 58, 237, 0.1) 40%, transparent 65%);
      filter: blur(14px);
      opacity: 0;
      transition: opacity 0.25s ease;
      pointer-events: none;
    }

    .partner-card:hover {
      transform: none;
      box-shadow: none;
    }
    .partner-card:hover::before { opacity: 1; }
    .partner-card:hover::after { opacity: 1; }

    .card-content {
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .partner-card img {
      width: 64px;
      height: 64px;
      object-fit: contain;
      filter: grayscale(100%);
      transition: all 0.3s ease;
      margin-bottom: 0;
    }

    .partner-card:hover img {
      filter: grayscale(0%);
      transform: scale(1.1);
    }

    .partner-name {
      position: absolute;
      left: 50%;
      bottom: -30px;
      transform: translateX(-50%) translateY(8px);
      background: #ffffff;
      color: #334155;
      border: 1px solid rgba(226, 232, 240, 0.8);
      border-radius: 9999px;
      padding: 6px 10px;
      font-size: 0.85rem;
      font-weight: 600;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
      opacity: 0;
      pointer-events: none;
      transition: all 0.2s ease;
      white-space: nowrap;
      z-index: 3;
    }

    .partner-card:hover .partner-name {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

    .card-hover { display: none; }

    /* Alt Bilgi */
    .partners-footer {
      text-align: center;
      margin-top: 60px;
      padding: 40px 20px;
      background: linear-gradient(135deg, rgba(78, 10, 217, 0.05), rgba(124, 58, 237, 0.05));
      border-radius: 20px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .footer-text {
      font-size: 1.1rem;
      color: #475569;
      margin-bottom: 25px;
      font-weight: 500;
    }

    .tech-badges {
      display: flex;
      justify-content: center;
      gap: 15px;
      flex-wrap: wrap;
    }

    .tech-badge {
      background: linear-gradient(135deg, #4E0AD9, #7C3AED);
      color: white;
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 600;
      box-shadow: 0 4px 12px rgba(78, 10, 217, 0.2);
      transition: all 0.3s ease;
    }

    .tech-badge:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(78, 10, 217, 0.3);
    }

    /* Responsive Tasarım */
    @media (max-width: 1200px) {
      .software-partners { padding: 60px 0; }
      .partners-grid { grid-template-columns: repeat(4, 1fr); gap: 28px; max-width: 900px; }
      
      .partners-title {
        font-size: 2.5rem;
      }
    }

    @media (max-width: 768px) {
      .software-partners { padding: 50px 0; }
      .partners-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 0 15px; max-width: 720px; }
      
      .partners-title {
        font-size: 2rem;
      }
      
      .partners-subtitle {
        font-size: 1.1rem;
      }
      .partner-card { width: 90px; height: 90px; }
      .partner-card img { width: 60px; height: 60px; }
    }

    @media (max-width: 576px) {
      .software-partners { padding: 40px 0; }
      .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 0 10px; max-width: 500px; }
      
      .partners-title {
        font-size: 1.8rem;
      }
      
      .partners-subtitle {
        font-size: 1rem;
      }
      .partner-card { width: 80px; height: 80px; }
      .partner-card img { width: 52px; height: 52px; }
      
      .tech-badges {
        gap: 10px;
      }
      
      .tech-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
      }
  }
  