
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            background: #000;
            color: #fff;
        }

        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 56px;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            z-index: 1000;
            padding: 0 24px;
        }

        .navbar-container {
            max-width: 1200px;
            margin: 0 auto;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

/* Logo (Brand) */
.brand {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* sola sabitle */
  height: 100%;                /* navbar yüksekliği kadar */
  text-decoration: none;
}

.brand-img {
  height: 32px;   /* logonun sabit yüksekliği */
  width: auto;    /* orantıyı koru */
  object-fit: contain;
  display: block;
}

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav-link:hover, .nav-link.active {
            color: #fff;
        }

        .download-btn {
            padding: 8px 16px;
            background: #fff;
            color: #000;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.2s;
        }

        /* Main Content */
        .main-content {
            padding-top: 100px;
            min-height: 100vh;
        }

        .enterprise-header {
            text-align: center;
            padding: 80px 24px;
            max-width: 900px;
            margin: 0 auto;
            background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
        }

        .enterprise-title {
            font-size: 64px;
            font-weight: 700;
            margin-bottom: 24px;
            background: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0.8));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .enterprise-subtitle {
            font-size: 22px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.5;
            margin-bottom: 40px;
        }

        .contact-button {
            display: inline-block;
            padding: 14px 32px;
            background: #fff;
            color: #000;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.2s;
        }

        .contact-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
        }

        /* Trust Section */
        .trust-section {
            padding: 60px 24px;
            text-align: center;
            background: rgba(255, 255, 255, 0.02);
        }

        .trust-title {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 32px;
        }

        .company-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 48px;
            flex-wrap: wrap;
            opacity: 0.6;
        }

        .company-logo {
            font-size: 24px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.8);
        }

        /* Features Grid */
        .enterprise-features {
            padding: 80px 24px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 48px;
            margin-top: 60px;
        }

        .enterprise-feature {
            text-align: left;
        }

        .enterprise-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 12px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .enterprise-feature h3 {
            font-size: 24px;
            margin-bottom: 12px;
        }

        .enterprise-feature p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        /* Security Section */
        .security-section {
            padding: 80px 24px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), transparent);
        }

        .security-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .security-title {
            font-size: 40px;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .security-badges {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .security-badge {
            padding: 16px 24px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            font-weight: 500;
        }

        /* CTA Section */
        .enterprise-cta {
            padding: 100px 24px;
            text-align: center;
            background: radial-gradient(ellipse at center, rgba(118, 75, 162, 0.2) 0%, transparent 70%);
        }

        .cta-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .cta-subtitle {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 40px;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-primary {
            padding: 14px 32px;
            background: #fff;
            color: #000;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.2s;
        }

        .cta-secondary {
            padding: 14px 32px;
            background: transparent;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            font-size: 16px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.2s;
        }

        /* === Account section: sola hizala + küçült (mobil) === */
@media (max-width: 768px) {

  /* Olası sınıf isimlerini ve düşe kalka son elemanı hedefliyoruz */
  .mobile-menu .account-card,
  .mobile-menu .user-card,
  .mobile-menu .account,
  .mobile-menu .user,
  .menu-drawer .account-card,
  .menu-drawer .user-card,
  .menu-drawer .account,
  .menu-drawer .user,
  .mobile-menu > div:last-child {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;   /* Sola hizala */
    text-align: left !important;
    gap: 4px !important;                  /* Satırlar arası boşluk */
    padding: 8px 12px !important;         /* İç boşluğu küçült */
    margin: 8px 0 0 0 !important;
    width: 100% !important;
    font-size: 13px !important;           /* Hepsini küçült */
    line-height: 1.25 !important;
  }

  /* İç elemanların kendi marjin/paddinglerini sıfırla */
  .mobile-menu .account-card > * ,
  .mobile-menu .user-card > * ,
  .menu-drawer .account-card > * ,
  .menu-drawer .user-card > * {
    margin: 0 !important;
    padding: 0 !important;
  }

  /* E-posta daha küçük/soluk olsun */
  .mobile-menu .account-card .email,
  .menu-drawer .account-card .email {
    font-size: 12px !important;
    opacity: .7 !important;
  }

  /* Linkler */
  .mobile-menu .account-card a,
  .menu-drawer .account-card a {
    color: rgba(255,255,255,.75) !important;
    text-decoration: none !important;
  }
  .mobile-menu .account-card a:hover,
  .menu-drawer .account-card a:hover {
    color: #fff !important;
  }
}


        /* === Mobile Menu Spacing Tweaks === */
@media (max-width: 768px) {
  /* Menünün kapladığı panel */
  .mobile-menu {
    position: fixed;
    top: 56px;              /* navbar yüksekliği ile aynı */
    left: 0; right: 0; bottom: 0;
    padding: 12px 20px 96px;/* üstü/yanları dar, altta kart için boşluk */
    background: #000;
    overflow-y: auto;       /* taşma olursa kaydır */
  }

  /* Liste ve aralıklar */
  .mobile-menu .menu-list,        /* <ul class="menu-list"> ise */
  .mobile-menu .nav-links {       /* <div class="nav-links"> ise */
    display: flex;
    flex-direction: column;
    gap: 10px;                    /* MADDELER ARASI ARALIĞI BURADAN KIS: 6–12px */
    margin: 0;
    padding: 0;
  }

  /* Tek tek linklerin iç boşluklarını küçült */
  .mobile-menu .nav-link,
  .mobile-menu a {
    display: block;
    margin: 0;                    /* dış boşlukları sıfırla */
    padding: 8px 12px;            /* iç boşluğu azalt */
    font-size: 18px;
    line-height: 1.15;            /* satır yüksekliğini sıkı tut */
    border-radius: 8px;
  }

  /* (li kullanıyorsan) li default boşluklarını kaldır */
  .mobile-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  /* Alt kullanıcı/kart bölümü menüye binmesin */
  .mobile-menu .account-card {
    margin-top: 14px;             /* listedan ayrılma payı */
    position: sticky;             /* kartı ekranda alta “yapıştır” */
    bottom: 12px;
  }
}


        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .enterprise-title {
                font-size: 40px;
            }

            .company-logos {
                gap: 24px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }
        }
